MeasuredTableRow
data class MeasuredTableRow(val height: Float, val cells: List<MeasuredTableCell>, val background: PdfColor?, val isHeader: Boolean)
One measured row in a MeasuredTable.
cells holds only the cells that start in this row (spanned cells appear once, in their top row); slots covered by a cell from an earlier row or an earlier column are not repeated here. Each cell carries its own MeasuredTableCell.columnIndex so the renderer can place it without re-deriving the grid.
Constructors
Link copied to clipboard
constructor(height: Float, cells: List<MeasuredTableCell>, background: PdfColor?, isHeader: Boolean)