Appearance
@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?
optionaloptions?:TableCellProps
Defined in: src/types/table.ts:621
text?
optionaltext?: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.)