RichBlockTableCell

@Serializable
data class RichBlockTableCell(val align: TableCellAlign, val valign: TableCellVerticalAlign, val text: RichText? = null, val isHeader: Boolean? = null, val colspan: Int? = null, val rowspan: Int? = null)(source)

Cell in a table.

Api reference

Constructors

Link copied to clipboard
constructor(align: TableCellAlign, valign: TableCellVerticalAlign, text: RichText? = null, isHeader: Boolean? = null, colspan: Int? = null, rowspan: Int? = null)

Properties

Link copied to clipboard

Horizontal cell content alignment. Currently, must be one of "left", "center", or "right".

Link copied to clipboard
val colspan: Int?

Optional. The number of columns the cell spans if it is bigger than 1

Link copied to clipboard

Optional. True, if the cell is a header cell

Link copied to clipboard
val rowspan: Int?

Optional. The number of rows the cell spans if it is bigger than 1

Link copied to clipboard

Optional. Text in the cell. If omitted, then the cell is invisible.

Link copied to clipboard

Vertical cell content alignment. Currently, must be one of "top", "middle", or "bottom".