Provides details about the Sorting event.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.Data.dll
Syntax:
C#
public class CardViewSortingEventArgs : CancelRoutedEventArgs
Inheritance: objectRadRoutedEventArgsCancelRoutedEventArgsCardViewSortingEventArgs
Inherited Members
Constructors
Initializes a new instance of the CardViewSortingEventArgs class.
C#
public CardViewSortingEventArgs(CardDataFieldDescriptor dataFieldDescriptor, SortingState oldSortingState, SortingState newSortingState)
The associated data field descriptor.
oldSortingStateSortingStateThe old SortingState.
newSortingStateSortingStateThe new SortingState.
Properties
Gets the associated data field descriptor.
C#
public CardDataFieldDescriptor DataFieldDescriptor { get; }
The DataFieldDescriptor.
Gets a value indicating whether the current sorting operation is on a multiple data field descriptor or on one.
C#
public bool IsMultipleDataFieldDescriptorSorting { get; }
true if a multiple data field descriptor sorting is executed; otherwise, false.
Gets or sets the new sorting state.
C#
public SortingState NewSortingState { get; set; }
The new direction of sorting.
Gets the old sorting state.
C#
public SortingState OldSortingState { get; }
The old direction of sorting.