Interface HtmlTableCell

HTML table cell structure

Hierarchy

  • HtmlTableCell

Properties

classes?: string[]

Classes of the td tag

Example

<td class="a b c"></td>
colSpan?: number

colspan of the td tag

Example

<td colspan="#"></td>
content: string

The content of the table cell

headerCell?: boolean

Is it a header cell (then use th tag, else use td tag)

rowSpan?: number

rowspan of the td tag

Example

<td rowspan="#"></td>

Generated using TypeDoc