Class SortedEventArgs
Provides data for the PreparedSortDescriptors event.
Inheritance
System.Object
System.EventArgs
SortedEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
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
|