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

Provides data for the PreparedSortDescriptors event.

Definition

Namespace:Telerik.Windows.Controls.VirtualGrid

Assembly:Telerik.Windows.Controls.VirtualGrid.dll

Syntax:

C#
public class SortedEventArgs : EventArgs

Inheritance: objectEventArgsSortedEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the SortedEventArgs class.

C#
public SortedEventArgs(SortingState sortDirection, ColumnSortDescriptor descriptor, int columnIndex)
Parameters:sortDirectionSortingStatedescriptorColumnSortDescriptorcolumnIndexint

Properties

Gets the sorted column index.

C#
public int ColumnIndex { get; }

Gets the column sort descriptor.

C#
public ColumnSortDescriptor ColumnSortDescriptor { get; }

Gets the sort direction.

C#
public SortingState SortDirection { get; }