Class SortingEventArgs
Provides data for the PreparingSortDescriptors event.
Inherited Members
Namespace: Telerik.Windows.Controls.VirtualGrid
Assembly: Telerik.Windows.Controls.VirtualGrid.dll
Syntax
public class SortingEventArgs : CancelRoutedEventArgs
Constructors
SortingEventArgs(SortingState, SortingState, ColumnSortDescriptor, Int32)
Initializes a new instance of the SortingEventArgs class.
Declaration
public SortingEventArgs(SortingState oldSortingState, SortingState newSortingState, ColumnSortDescriptor sortDescriptor, int columnIndex)
Parameters
SortingState
oldSortingState
|
SortingState
newSortingState
|
ColumnSortDescriptor
sortDescriptor
|
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
|
NewSortDirection
Gets or sets the sort direction.
Declaration
public SortingState NewSortDirection { get; set; }
Property Value
SortingState
|
OldSortDirection
Gets the old sort direction.
Declaration
public SortingState OldSortDirection { get; }
Property Value
SortingState
|