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