Class CardViewSortingEventArgs
Provides details about the Sorting event.
Inherited Members
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.Data.dll
Syntax
public class CardViewSortingEventArgs : CancelRoutedEventArgs
Constructors
CardViewSortingEventArgs(CardDataFieldDescriptor, SortingState, SortingState)
Initializes a new instance of the CardViewSortingEventArgs class.
Declaration
public CardViewSortingEventArgs(CardDataFieldDescriptor dataFieldDescriptor, SortingState oldSortingState, SortingState newSortingState)
Parameters
CardDataFieldDescriptor
dataFieldDescriptor
The associated data field descriptor. |
SortingState
oldSortingState
The old SortingState. |
SortingState
newSortingState
The new SortingState. |
Properties
DataFieldDescriptor
Gets the associated data field descriptor.
Declaration
public CardDataFieldDescriptor DataFieldDescriptor { get; }
Property Value
CardDataFieldDescriptor
The DataFieldDescriptor. |
IsMultipleDataFieldDescriptorSorting
Gets a value indicating whether the current sorting operation is on a multiple data field descriptor or on one.
Declaration
public bool IsMultipleDataFieldDescriptorSorting { 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. |