Gets the sort keys - objects identifying which columns or rows to sort by and whether the sort is ascending or descending.
Namespace: MindFusion.Spreadsheet
Assembly: MindFusion.Spreadsheet.WinForms
SyntaxC#
Copy Code
|
|---|
public List<SortKey> Keys { get; } |
Visual Basic
Copy Code
|
|---|
Public ReadOnly Property Keys As List(Of SortKey) |
A list of SortKey objects.
RemarksThe sort keys are prioritized based on their order in this collection. The sorting is first performed using the key at position 0, then using the key at position 1, and so on. Keys identifying the same row or column and keys outside of the cell range being sorted, are ignored.
See Also