Sort

Sort(Cells, int, int, int, int)

对该区域的数据进行排序。

public int[] Sort(Cells cells, int startRow, int startColumn, int endRow, int endColumn)
范围类型描述
cellsCells单元格包含数据区域。
startRowInt32区域的起始行。
startColumnInt32区域的起始列。
endRowInt32区域的最后一行。
endColumnInt32区域的最后一列。

返回值

排序后的行/列的原始索引(绝对位置,例如A列为0,B为1,…)。 如果此排序操作不需要移动行/列,将返回null。

也可以看看


Sort(Cells, CellArea)

对该区域的数据进行排序

public int[] Sort(Cells cells, CellArea area)
范围类型描述
cellsCells单元格包含数据区域。
areaCellArea需要排序的区域

返回值

排序后的行/列的原始索引(绝对位置,例如A列为0,B为1,…)。 如果此排序操作不需要移动行/列,将返回null。

也可以看看


Sort()

对范围内的数据进行排序。

public int[] Sort()

返回值

排序后的行/列的原始索引(绝对位置,例如A列为0,B为1,…)。 如果此排序操作不需要移动行/列,将返回null。

也可以看看