Class ColumnSortDescriptor
Represents a sort descriptor, which sorts by the value of its Column.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Controls.GridView
Assembly: Telerik.Windows.Controls.GridView.dll
Syntax
public class ColumnSortDescriptor : SortDescriptorBase, ISuspendNotifications, ISortDescriptor, INotifyPropertyChanged
Constructors
ColumnSortDescriptor()
Declaration
public ColumnSortDescriptor()
Fields
ColumnProperty
The backing DependencyProperty storage for the Column property.
Declaration
public static readonly DependencyProperty ColumnProperty
Field Value
System.Windows.DependencyProperty
|
Properties
Column
Gets or sets the column that will be used for sorting.
Declaration
public GridViewColumn Column { get; set; }
Property Value
GridViewColumn
The column that will be used for sorting. |
Methods
CreateSortKeyExpression(ParameterExpression)
Creates a sort expression that returns the sorting key for each item in a collection.
Declaration
protected override Expression CreateSortKeyExpression(ParameterExpression parameterExpression)
Parameters
System.Linq.Expressions.ParameterExpression
parameterExpression
The parameter expression, which will be used for sorting. |
Returns
System.Linq.Expressions.Expression
Expression that creates a sort key for the given item. |