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 GridViewSortingEventArgs class.
Declaration
public GridViewSortingEventArgs(GridViewColumn column, SortingState oldSortingState, SortingState newSortingState)
Parameters
GridViewColumn
column
The associated column. |
SortingState
oldSortingState
The old SortingState. |
SortingState
newSortingState
The new SortingState. |
Properties
Column
Gets the associated column.
Declaration
public GridViewColumn Column { get; }
Property Value
GridViewColumn
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
GridViewDataControl
|
IsMultipleColumnSorting
Gets a value indicating whether the current sorting operation is a multiple column one.
Declaration
public bool IsMultipleColumnSorting { get; }
Property Value
System.Boolean
|
NewSortingState
Gets or sets the new sorting state.
Declaration
public SortingState NewSortingState { get; set; }
Property Value
SortingState
The new direction of sorting. |
OldSortingState
Gets the old sorting state.
Declaration
public SortingState OldSortingState { get; }
Property Value
SortingState
The old direction of sorting. |