Class SortColumn
Representing the class that contains the columns that represents sorting, which contains the column name that is sorted and sort direction.
Inheritance
System.Object
SortColumn
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Data
Assembly: Syncfusion.Data.WinForms.dll
Syntax
public class SortColumn
Constructors
SortColumn()
Initializes a new instance of the SortColumn class.
Declaration
public SortColumn()
Properties
ColumnName
Gets or sets the name of the column that represents sorting.
Declaration
public string ColumnName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name of the column that represents sorting. |
SortDirection
Gets or sets the direction of sorting applied.
Declaration
public ListSortDirection SortDirection { get; set; }
Property Value
Type | Description |
---|---|
System.ComponentModel.ListSortDirection | The direction of sorting applied. |