Skip to main content
A newer version of this page is available. .

TableCell Class

Defines a table cell in the document.

Declaration

export class TableCell

Properties

index Property

Gets an index of the cell in a table row.

Declaration

readonly index: number

Property Value

Type Description
number

The cell index.

Remarks

Use the index to access the corresponding cell by the TableCellCollection.getByIndex method.

richEdit.document.tables.getByIndex(0).rows.getByIndex(0).cells.getByIndex(0);

interval Property

Gets the text buffer interval occupied by the current table cell element.

Declaration

readonly interval: Interval

Property Value

Type Description
Interval

An object that contains the interval settings.