Skip to content

@shbernal/ts-pptx


@shbernal/ts-pptx / index / TableCell

Interface: TableCell

Defined in: src/types/table.ts:600

Properties

_hmerge?

optional _hmerge?: boolean

Defined in: src/types/table.ts:608


_lineHeight?

optional _lineHeight?: number

Defined in: src/types/table.ts:607

height in EMU


_lines?

optional _lines?: TableCell[][]

Defined in: src/types/table.ts:603

lines in this cell (autoPage)


_rowContinue?

optional _rowContinue?: number

Defined in: src/types/table.ts:610


_spanOrigin?

optional _spanOrigin?: TableCell

Defined in: src/types/table.ts:613

origin cell of a colspan/rowspan span, set on the dummy _hmerge/_vmerge cells so they can inherit the origin's border/fill and render the merged region's outer edges


_tableCells?

optional _tableCells?: TableCell[]

Defined in: src/types/table.ts:605

text prop but guaranteed to hold "TableCell[]"


_type?

optional _type?: tablecell

Defined in: src/types/table.ts:601


_vmerge?

optional _vmerge?: boolean

Defined in: src/types/table.ts:609


options?

optional options?: TableCellProps

Defined in: src/types/table.ts:621


text?

optional text?: string | TableCell[]

Defined in: src/types/table.ts:620

Cell content: a plain string, or an array of TableCell runs for mixed formatting. (A number is still coerced to a string at runtime for plain-JS callers, but is no longer part of the type — pass String(n) from TypeScript.)