Appearance
zeropdf / TableCellDefinition
Interface: TableCellDefinition
Defined in: src/types.ts:2013
Detailed table cell object with span, header, scope, and structure options.
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
annotations? | readonly ParagraphTextAnnotation[] | Inline annotations anchored to substrings of the rendered cell text. | src/types.ts:2027 |
colSpan? | number | Number of columns spanned by the cell. | src/types.ts:2023 |
header? | boolean | Callback that returns header blocks for each page. | src/types.ts:2017 |
rowSpan? | number | Number of rows spanned by the cell. | src/types.ts:2021 |
scope? | TableHeaderScope | Search scope used when finding related structure elements. | src/types.ts:2019 |
structure? | PdfStructureOptions | Additional structure metadata for tagged PDF output. | src/types.ts:2025 |
text | string | Text content to render or inspect. | src/types.ts:2015 |
verticalAlign? | VerticalAlign | Vertical alignment of this cell's content within the row height, overriding TableOptions.verticalAlign. | src/types.ts:2032 |