Sort
Sort(int)
按索引对范围内的数据进行升序排序。
public void Sort(int index)
范围 | 类型 | 描述 |
---|---|---|
index | Int32 | 指定排序列(或行)的列(或行)索引。 如果排序方向是从上到下,则索引表示列索引。 如果排序方向是从左到右,则索引表示行索引。 |
也可以看看
Sort(int, SortOrder)
按索引对范围内的数据进行排序。
public void Sort(int index, SortOrder order)
范围 | 类型 | 描述 |
---|---|---|
index | Int32 | 指定排序列(或行)的列(或行)索引。 如果排序方向是从上到下,则索引表示列索引。 如果排序方向是从左到右,则索引表示行索引。 |
order | SortOrder | 排序顺序 |
也可以看看
- enum SortOrder
- class SortRange
- 命名空间 Aspose.Cells.GridDesktop
- 部件 Aspose.Cells.GridDesktop
Sort(int[])
按数组索引指定的某个字段对范围内的数据进行升序排序。
public void Sort(int[] indexes)
范围 | 类型 | 描述 |
---|---|---|
indexes | Int32[] | 指定数据排序依据的索引数组。 |
也可以看看
Sort(int[], SortOrder[])
按数组索引指定的某个字段对范围内的数据进行排序。
public void Sort(int[] indexes, SortOrder[] orders)
范围 | 类型 | 描述 |
---|---|---|
indexes | Int32[] | 指定数据排序依据的索引数组。 |
orders | SortOrder[] | 排序顺序数组 |
也可以看看
- enum SortOrder
- class SortRange
- 命名空间 Aspose.Cells.GridDesktop
- 部件 Aspose.Cells.GridDesktop