Excel.Interfaces.TableRowData interface
An interface describing the data returned by calling tableRow.toJSON()
.
Properties
index | Returns the index number of the row within the rows collection of the table. Zero-indexed. |
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
index
Returns the index number of the row within the rows collection of the table. Zero-indexed.
index?: number;
Property Value
number
Remarks
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?: any[][];
Property Value
any[][]
Remarks
Office Add-ins