Excel.Interfaces.TableColumnCollectionLoadOptions interface
Represents a collection of all the columns that are part of the table.
Remarks
Properties
$all | Specifying |
filter | For EACH ITEM in the collection: Retrieves the filter applied to the column. |
id | For EACH ITEM in the collection: Returns a unique key that identifies the column within the table. |
index | For EACH ITEM in the collection: Returns the index number of the column within the columns collection of the table. Zero-indexed. |
name | For EACH ITEM in the collection: Specifies the name of the table column. |
values | For EACH ITEM in the collection: Represents the raw values of the specified range. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string. If the returned value starts with a plus ("+"), minus ("-"), or equal sign ("="), Excel interprets this value as a formula. |
values |
For EACH ITEM in the collection: A JSON representation of the values in the cells in this table column. Unlike |
values |
For EACH ITEM in the collection: A JSON representation of the values in the cells in this table column. Unlike |
Property Details
$all
Specifying $all
for the load options loads all the scalar properties (such as Range.address
) but not the navigational properties (such as Range.format.fill.color
).
$all?: boolean;
Property Value
boolean
filter
For EACH ITEM in the collection: Retrieves the filter applied to the column.
filter?: Excel.Interfaces.FilterLoadOptions;
Property Value
Remarks
id
For EACH ITEM in the collection: Returns a unique key that identifies the column within the table.
id?: boolean;
Property Value
boolean
Remarks
index
For EACH ITEM in the collection: Returns the index number of the column within the columns collection of the table. Zero-indexed.
index?: boolean;
Property Value
boolean
Remarks
name
For EACH ITEM in the collection: Specifies the name of the table column.
name?: boolean;
Property Value
boolean
Remarks
[ API set: ExcelApi 1.1 for getting the name; 1.4 for setting it. ]
values
For EACH ITEM in the collection: Represents the raw values of the specified range. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string. If the returned value starts with a plus ("+"), minus ("-"), or equal sign ("="), Excel interprets this value as a formula.
values?: boolean;
Property Value
boolean
Remarks
valuesAsJson
For EACH ITEM in the collection: A JSON representation of the values in the cells in this table column. Unlike TableColumn.values
, TableColumn.valuesAsJson
supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values. Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use TableColumn.valuesAsJsonLocal
.
valuesAsJson?: boolean;
Property Value
boolean
Remarks
valuesAsJsonLocal
For EACH ITEM in the collection: A JSON representation of the values in the cells in this table column. Unlike TableColumn.values
, TableColumn.valuesAsJsonLocal
supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values. Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use TableColumn.valuesAsJson
.
valuesAsJsonLocal?: boolean;
Property Value
boolean
Remarks
Office Add-ins