ClassGridViewSortingEventArgs
Provides details about the Sorting event.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.GridView.dll
Syntax:
public class GridViewSortingEventArgs : CancelRoutedEventArgs
Inheritance: objectRadRoutedEventArgsCancelRoutedEventArgsGridViewSortingEventArgs
Inherited Members
Constructors
GridViewSortingEventArgs(GridViewColumn, SortingState, SortingState)
Initializes a new instance of the GridViewSortingEventArgs class.
Declaration
public GridViewSortingEventArgs(GridViewColumn column, SortingState oldSortingState, SortingState newSortingState)
Parameters
column
The associated column.
oldSortingState
The old SortingState.
newSortingState
The new SortingState.
Properties
Column
Gets the associated column.
Declaration
public GridViewColumn Column { get; }
Property Value
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
true if a multiple column sorting is executed; otherwise, false.
NewSortingState
Gets or sets the new sorting state.
Declaration
public SortingState NewSortingState { get; set; }
Property Value
The new direction of sorting.
OldSortingState
Gets the old sorting state.
Declaration
public SortingState OldSortingState { get; }
Property Value
The old direction of sorting.