Class SortSettingsModel
Class that defines sort settings model.
Inheritance
System.Object
SortSettingsModel
Implements
System.IEquatable<SortSettingsModel>
Namespace: Syncfusion.Blazor.Gantt
Assembly: Syncfusion.Blazor.dll
Syntax
public class SortSettingsModel : Object, IEquatable<SortSettingsModel>
Constructors
SortSettingsModel()
Declaration
public SortSettingsModel()
Properties
AllowUnsort
If allowUnsort
set to false the user can not get the Tree grid in unsorted state by clicking the sorted column header.
Declaration
public bool AllowUnsort { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Columns
Specifies the columns to sort at initial rendering of Gantt. Also user can get current sorted columns.
Declaration
public List<SortDescriptorModel> Columns { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<SortDescriptorModel> |
Methods
Equals(SortSettingsModel)
Returns boolean value by comparing sortSettingsModel
Declaration
public bool Equals(SortSettingsModel sortSettingsModel)
Parameters
Type | Name | Description |
---|---|---|
SortSettingsModel | sortSettingsModel |
Returns
Type | Description |
---|---|
System.Boolean |
Equals(Object)
Returns boolean value by comparing object
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
System.Object | obj |
Returns
Type | Description |
---|---|
System.Boolean |
GetHashCode()
Returns hashcode for current object
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
System.Int32 |
Implements
System.IEquatable<>