Class SortColumnDescriptions
Represents a collection of sorting column description that raises notification for both collection and item changes.
Inheritance
System.Object
SortColumnDescriptions
Namespace: Syncfusion.UI.Xaml.Grids
Assembly: Syncfusion.Grid.WinUI.dll
Syntax
public class SortColumnDescriptions : ObservableCollection<SortColumnDescription>
Remarks
You can add many SortColumnDescription instance to perform sorting.
Constructors
SortColumnDescriptions()
Initializes a new instance of SortColumnDescriptions class.
Declaration
public SortColumnDescriptions()
Properties
Item[String]
Gets the column from the SortColumnDescriptions collection at the specified column name.
Declaration
public SortColumnDescription this[string columnName] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.String | columnName | The columnName to retrieve the corresponding column. |
Property Value
Type | Description |
---|---|
SortColumnDescription | Returns the corresponding column from the SortColumnDescriptions collection. |