Excel.RangeSort class
管理对 Range
对象的排序操作。
- 扩展
注解
属性
context | 与 对象关联的请求上下文。 这会将加载项的进程连接到 Office 主机应用程序的进程。 |
方法
apply(fields, match |
执行排序操作。 |
apply(fields, match |
执行排序操作。 |
toJSON() | 重写 JavaScript |
属性详细信息
context
方法详细信息
apply(fields, matchCase, hasHeaders, orientation, method)
执行排序操作。
apply(fields: Excel.SortField[], matchCase?: boolean, hasHeaders?: boolean, orientation?: Excel.SortOrientation, method?: Excel.SortMethod): void;
参数
- fields
要用作排序依据的条件列表。
- matchCase
-
boolean
可选。 是否让大小写对字符串排序产生影响。
- hasHeaders
-
boolean
可选。 该区域是否有标头。
- orientation
- Excel.SortOrientation
可选。 该操作是对行还是列排序。
- method
- Excel.SortMethod
可选。 用于中文字符的排序方法。
返回
void
注解
apply(fields, matchCase, hasHeaders, orientationString, methodString)
执行排序操作。
apply(fields: Excel.SortField[], matchCase?: boolean, hasHeaders?: boolean, orientationString?: "Rows" | "Columns", methodString?: "PinYin" | "StrokeCount"): void;
参数
- fields
要用作排序依据的条件列表。
- matchCase
-
boolean
可选。 是否让大小写对字符串排序产生影响。
- hasHeaders
-
boolean
可选。 该区域是否有标头。
- orientationString
-
"Rows" | "Columns"
可选。 该操作是对行还是列排序。
- methodString
-
"PinYin" | "StrokeCount"
可选。 用于中文字符的排序方法。
返回
void
注解
toJSON()
重写 JavaScript toJSON()
方法,以便在将 API 对象传递给 JSON.stringify()
时提供更有用的输出。
JSON.stringify
(,反过来又调用toJSON
传递给它的 对象的 方法。) 而原始Excel.RangeSort
对象是 API 对象,toJSON
该方法返回一个纯 JavaScript 对象, (类型为 Excel.Interfaces.RangeSortData
) ,其中包含原始对象中任何已加载子属性的浅表副本。
toJSON(): {
[key: string]: string;
};
返回
{ [key: string]: string; }