Excel.SortField interface
Represents a condition in a sorting operation.
Remarks
Properties
ascending | Specifies if the sorting is done in an ascending fashion. |
color | Specifies the color that is the target of the condition if the sorting is on font or cell color. |
data |
Represents additional sorting options for this field. |
icon | Specifies the icon that is the target of the condition, if the sorting is on the cell's icon. |
key | Specifies the column (or row, depending on the sort orientation) that the condition is on. Represented as an offset from the first column (or row). |
sort |
Specifies the type of sorting of this condition. |
sub |
Specifies the subfield that is the target property name of a rich value to sort on. |
Property Details
ascending
Specifies if the sorting is done in an ascending fashion.
ascending?: boolean;
Property Value
boolean
Remarks
color
Specifies the color that is the target of the condition if the sorting is on font or cell color.
color?: string;
Property Value
string
Remarks
dataOption
Represents additional sorting options for this field.
dataOption?: Excel.SortDataOption | "Normal" | "TextAsNumber";
Property Value
Excel.SortDataOption | "Normal" | "TextAsNumber"
Remarks
icon
Specifies the icon that is the target of the condition, if the sorting is on the cell's icon.
icon?: Excel.Icon;
Property Value
Remarks
key
Specifies the column (or row, depending on the sort orientation) that the condition is on. Represented as an offset from the first column (or row).
key: number;
Property Value
number
Remarks
sortOn
Specifies the type of sorting of this condition.
sortOn?: Excel.SortOn | "Value" | "CellColor" | "FontColor" | "Icon";
Property Value
Excel.SortOn | "Value" | "CellColor" | "FontColor" | "Icon"
Remarks
subField
Specifies the subfield that is the target property name of a rich value to sort on.
subField?: string;
Property Value
string
Remarks
Office Add-ins