Class SortState
Represents the sort state.
Inheritance
System.Object
SortState
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.Windows.Documents.Spreadsheet.Model.Sorting
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public class SortState
Properties
Count
Gets the count.
Declaration
public int Count { get; }
Property Value
System.Int32
The count. |
SortConditions
Gets the sort conditions.
Declaration
public IEnumerable<ISortCondition> SortConditions { get; }
Property Value
System.Collections.Generic.IEnumerable<ISortCondition>
The sort conditions. |
SortRange
Gets the sort range.
Declaration
public CellRange SortRange { get; }
Property Value
CellRange
The sort range. |
Methods
Clear()
Clears the sort range and sort conditions.
Declaration
public void Clear()
Set(CellRange, ISortCondition[])
Sets the sort conditions for the specified sort range.
Declaration
public void Set(CellRange sortRange, params ISortCondition[] sortConditions)
Parameters
CellRange
sortRange
The sort range. |
ISortCondition[]
sortConditions
The sort conditions. |