Excel.Interfaces.TableColumnLoadOptions interface
Represents a column in a table.
Remarks
Properties
$all | Specifying |
id | Returns a unique key that identifies the column within the table. |
index | Returns the index number of the column within the columns collection of the table. Zero-indexed. |
name | Specifies the name of the table column. |
values | 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. |
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
id
Returns a unique key that identifies the column within the table.
id?: boolean;
Property Value
boolean
Remarks
index
Returns the index number of the column within the columns collection of the table. Zero-indexed.
index?: boolean;
Property Value
boolean
Remarks
name
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
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
Office Add-ins