Interface ISortCondition
Represents a sort condition.
Namespace: Telerik.Windows.Documents.Spreadsheet.Model.Sorting
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public interface ISortCondition
Properties
Comparer
Gets the comparer used for sorting.
Declaration
IComparer<SortValue> Comparer { get; }
Property Value
System.Collections.Generic.IComparer<SortValue>
The comparer used for sorting. |
RelativeIndex
Gets the index of the row or column that is key for sorting relative to the sorted range.
Declaration
int RelativeIndex { get; }
Property Value
System.Int32
The index of the row or column that is key for sorting relative to the sorted range. |
Methods
GetValue(Cells, Int32, Int32)
Gets the value.
Declaration
object GetValue(Cells cells, int rowIndex, int columnIndex)
Parameters
Cells
cells
The cells. |
System.Int32
rowIndex
The row index. |
System.Int32
columnIndex
The column index. |
Returns
System.Object
The value of the specified cell. |