Interface
ISortDescriptor

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 INotifyPropertyChanged.PropertyChanged

Properties

SortDirection

Gets or sets the sort direction for this descriptor.

Declaration

cs-api-definition
ListSortDirection SortDirection { get; set; }

Property Value

ListSortDirection

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

Expression representing an item in a collection.

Returns

Expression

Expression that creates sort key for the given item.