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