PowerPoint.Interfaces.TableCellData interface
An interface describing the data returned by calling tableCell.toJSON()
.
Properties
column |
Gets the number of table columns this cell spans across. Will be greater than or equal to 1. |
column |
Gets the zero-based column index of the cell within the table. |
row |
Gets the number of table rows this cell spans across. Will be greater than or equal to 1. |
row |
Gets the zero-based row index of the cell within the table. |
text | Specifies the text content of the table cell. |
Property Details
columnCount
Gets the number of table columns this cell spans across. Will be greater than or equal to 1.
columnCount?: number;
Property Value
number
Remarks
columnIndex
Gets the zero-based column index of the cell within the table.
columnIndex?: number;
Property Value
number
Remarks
rowCount
Gets the number of table rows this cell spans across. Will be greater than or equal to 1.
rowCount?: number;
Property Value
number
Remarks
rowIndex
Gets the zero-based row index of the cell within the table.
rowIndex?: number;
Property Value
number
Remarks
text
Specifies the text content of the table cell.
text?: string;
Property Value
string