Class TableCell  |  Apps Script  |  Google for Developers (original) (raw)

Class TableCell

Stay organized with collections Save and categorize content based on your preferences.

TableCell

A cell in a table.

Methods

Method Return type Brief description
getColumnIndex() Integer Returns the 0-based column index of the table cell.
getColumnSpan() Integer Returns the column span of the table cell.
getContentAlignment() ContentAlignment Returns the ContentAlignment of the text in the table cell.
getFill() Fill Returns the fill of the table cell.
getHeadCell() TableCell Returns the head cell of this table cell.
getMergeState() CellMergeState Returns the merge state of the table cell.
getParentColumn() TableColumn Returns the table column containing the current cell.
getParentRow() TableRow Returns the table row containing the current cell.
getParentTable() Table Returns the table containing the current cell.
getRowIndex() Integer Returns the 0-based row index of the table cell.
getRowSpan() Integer Returns the row span of the table cell.
getText() TextRange Returns the text content of the table cell.
setContentAlignment(contentAlignment) TableCell Sets the ContentAlignment of the text in the table cell.

Detailed documentation

getColumnIndex()

Returns the 0-based column index of the table cell.

Return

Integer

Scripts that use this method require authorization with one or more of the following scopes:


getColumnSpan()

Returns the column span of the table cell.

Return

Integer

Authorization

Scripts that use this method require authorization with one or more of the following scopes:


getContentAlignment()

Returns the [ContentAlignment](/apps-script/reference/slides/content-alignment) of the text in the table cell.

Return

[ContentAlignment](/apps-script/reference/slides/content-alignment)

Authorization

Scripts that use this method require authorization with one or more of the following scopes:


getFill()

Returns the fill of the table cell.

Return

[Fill](/apps-script/reference/slides/fill)

Authorization

Scripts that use this method require authorization with one or more of the following scopes:


getHeadCell()

Returns the head cell of this table cell. Returns null if this cell has not been merged or if this cell is the head cell.

Return

[TableCell](#)

Authorization

Scripts that use this method require authorization with one or more of the following scopes:


getMergeState()

Returns the merge state of the table cell.

Return

[CellMergeState](/apps-script/reference/slides/cell-merge-state)

Authorization

Scripts that use this method require authorization with one or more of the following scopes:


getParentColumn()

Returns the table column containing the current cell.

Return

[TableColumn](/apps-script/reference/slides/table-column)

Authorization

Scripts that use this method require authorization with one or more of the following scopes:


getParentRow()

Returns the table row containing the current cell.

Return

[TableRow](/apps-script/reference/slides/table-row)

Authorization

Scripts that use this method require authorization with one or more of the following scopes:


getParentTable()

Returns the table containing the current cell.

Return

[Table](/apps-script/reference/slides/table)

Authorization

Scripts that use this method require authorization with one or more of the following scopes:


getRowIndex()

Returns the 0-based row index of the table cell.

Return

Integer

Authorization

Scripts that use this method require authorization with one or more of the following scopes:


getRowSpan()

Returns the row span of the table cell.

Return

Integer

Authorization

Scripts that use this method require authorization with one or more of the following scopes:


getText()

Returns the text content of the table cell. Returns null if the cell is merged but is not a head cell.

Text within a table cell always terminates with a newline character.

Return

[TextRange](/apps-script/reference/slides/text-range)

Authorization

Scripts that use this method require authorization with one or more of the following scopes:


setContentAlignment(contentAlignment)

Sets the [ContentAlignment](/apps-script/reference/slides/content-alignment) of the text in the table cell.

Parameters

Name Type Description
contentAlignment ContentAlignment

Return

[TableCell](#)

Authorization

Scripts that use this method require authorization with one or more of the following scopes:

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2024-12-02 UTC.