PowerPoint.Interfaces.TableCellUpdateData interface
An interface for updating data on the TableCell
object, for use in tableCell.set({ ... })
.
Properties
horizontal |
Specifies the horizontal alignment of the text in the table cell. |
indent |
Specifies the indent level of the text in the table cell. |
text | Specifies the text content of the table cell. |
text |
Specifies the contents of the table cell as an array of objects. Each |
vertical |
Specifies the vertical alignment of the text in the table cell. |
Property Details
horizontalAlignment
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Specifies the horizontal alignment of the text in the table cell.
horizontalAlignment?: PowerPoint.ParagraphHorizontalAlignment | "Left" | "Center" | "Right" | "Justify" | "JustifyLow" | "Distributed" | "ThaiDistributed";
Property Value
PowerPoint.ParagraphHorizontalAlignment | "Left" | "Center" | "Right" | "Justify" | "JustifyLow" | "Distributed" | "ThaiDistributed"
Remarks
indentLevel
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Specifies the indent level of the text in the table cell.
indentLevel?: number;
Property Value
number
Remarks
text
Specifies the text content of the table cell.
text?: string;
Property Value
string
Remarks
textRuns
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Specifies the contents of the table cell as an array of objects. Each TextRun
object represents a sequence of one or more characters that share the same font attributes.
textRuns?: PowerPoint.TextRun[];
Property Value
Remarks
verticalAlignment
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Specifies the vertical alignment of the text in the table cell.
verticalAlignment?: PowerPoint.TextVerticalAlignment | "Top" | "Middle" | "Bottom" | "TopCentered" | "MiddleCentered" | "BottomCentered";
Property Value
PowerPoint.TextVerticalAlignment | "Top" | "Middle" | "Bottom" | "TopCentered" | "MiddleCentered" | "BottomCentered"