New to Telerik UI for WPFStart a free 30-day trial

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 CancelRoutedEventArgs.Cancel

Constructors

Initializes a new instance of the CardViewSortingEventArgs class.

C#
public CardViewSortingEventArgs(CardDataFieldDescriptor dataFieldDescriptor, SortingState oldSortingState, SortingState newSortingState)
Parameters:dataFieldDescriptorCardDataFieldDescriptor

The associated data field descriptor.

oldSortingStateSortingState

The old SortingState.

newSortingStateSortingState

The new SortingState.

Properties

Gets the associated data field descriptor.

C#
public CardDataFieldDescriptor DataFieldDescriptor { get; }
Property Value:

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; }
Property Value:

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; }
Property Value:

The new direction of sorting.

Gets the old sorting state.

C#
public SortingState OldSortingState { get; }
Property Value:

The old direction of sorting.