Class SortedEventArgs
Provides data for the PreparedSortDescriptors event.
Inheritance
System.Object
SortedEventArgs
Namespace: Telerik.Windows.Controls.VirtualGrid
Assembly: Telerik.Windows.Controls.VirtualGrid.dll
Syntax
public class SortedEventArgs : EventArgs
Constructors
SortedEventArgs(SortingState, ColumnSortDescriptor, Int32)
Initializes a new instance of the SortedEventArgs class.
Declaration
public SortedEventArgs(SortingState sortDirection, ColumnSortDescriptor descriptor, int columnIndex)
Parameters
SortingState
sortDirection
|
ColumnSortDescriptor
descriptor
|
System.Int32
columnIndex
|
Properties
ColumnIndex
Gets the sorted column index.
Declaration
public int ColumnIndex { get; }
Property Value
System.Int32
|
ColumnSortDescriptor
Gets the column sort descriptor.
Declaration
public ColumnSortDescriptor ColumnSortDescriptor { get; }
Property Value
ColumnSortDescriptor
|
SortDirection
Gets the sort direction.
Declaration
public SortingState SortDirection { get; }
Property Value
SortingState
|