Class GridViewSortingEventArgs
Provides details about the Sorting event.
Inherited Members
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.GridView.dll
Syntax
public class GridViewSortingEventArgs : CancelRoutedEventArgs
Constructors
GridViewSortingEventArgs(GridViewColumn, SortingState, SortingState)
Initializes a new instance of the Grid
Declaration
public GridViewSortingEventArgs(GridViewColumn column, SortingState oldSortingState, SortingState newSortingState)
Parameters
Grid The associated column. |
Sorting The old SortingState. |
Sorting The new SortingState. |
Properties
Column
Gets the associated column.
Declaration
public GridViewColumn Column { get; }
Property Value
Grid The column. |
DataControl
Gets the source data control that triggered the sorting event. That is either the RadGridView control or a hierarchy child.
Declaration
public GridViewDataControl DataControl { get; }
Property Value
IsMultipleColumnSorting
Gets a value indicating whether the current sorting operation is a multiple column one.
Declaration
public bool IsMultipleColumnSorting { get; }
Property Value
System.
|
NewSortingState
Gets or sets the new sorting state.
Declaration
public SortingState NewSortingState { get; set; }
Property Value
Sorting The new direction of sorting. |
OldSortingState
Gets the old sorting state.
Declaration
public SortingState OldSortingState { get; }
Property Value
Sorting The old direction of sorting. |