ISortDescriptor
Interface
Represents a sorting abstraction that knows how to create sort key expressions.
Definition
Namespace:Telerik.Windows.Data
Assembly:Telerik.Windows.Data.dll
Syntax:
C#
public interface ISortDescriptor : INotifyPropertyChanged
Derived Classes:
Inherited Members
Properties
Gets or sets the sort direction for this descriptor.
C#
ListSortDirection SortDirection { get; set; }
The sort direction.
Methods
Creates a sort expression that returns the sorting key for each item in a collection.
C#
Expression CreateSortKeyExpression(Expression itemExpression)
Expression representing an item in a collection.
Returns:Expression that creates sort key for the given item.