TableCellNode
data class TableCellNode(val content: PdfNode, val style: TableCellStyle, val colSpan: Int = 1, val rowSpan: Int = 1)
One cell of a TableRowNode.
The cell's content is itself a small ColumnNode subtree so the user can stack multiple text blocks (e.g. a title + a subtitle) inside one cell.
Cells may span multiple columns (colSpan) and/or rows (rowSpan), HTML-table style. A spanned cell occupies a rectangular block of the occupancy grid; the row's later cells, and the cells of the rows it extends into, fill the remaining free columns in order and skip the occupied ones.
Properties
Link copied to clipboard
cell-level overrides on top of the table-wide TableNode.cellPadding and default alignment.