OneNote.Interfaces.TableRowData interface
An interface describing the data returned by calling tableRow.toJSON().
Properties
| cell |
Gets the number of cells in the row. Read-only. |
| cells | Gets the cells in the row. Read-only. |
| id | Gets the ID of the row. Read-only. |
| row |
Gets the index of the row in its parent table. Read-only. |
Property Details
cellCount
Gets the number of cells in the row. Read-only.
cellCount?: number;
Property Value
number
Remarks
cells
Gets the cells in the row. Read-only.
cells?: OneNote.Interfaces.TableCellData[];
Property Value
Remarks
id
Gets the ID of the row. Read-only.
id?: string;
Property Value
string
Remarks
rowIndex
Gets the index of the row in its parent table. Read-only.
rowIndex?: number;
Property Value
number