Interface PageBlockTableCell

Represents a cell of a table.

interface PageBlockTableCell {
    @type: "pageBlockTableCell";
    align: PageBlockHorizontalAlignment;
    colspan: number;
    is_header?: boolean;
    rowspan: number;
    text: RichText;
    valign: PageBlockVerticalAlignment;
}

Properties

@type: "pageBlockTableCell"

Horizontal cell content alignment.

colspan: number

The number of columns the cell spans.

is_header?: boolean

True, if it is a header cell.

rowspan: number

The number of rows the cell spans.

text: RichText

Cell text; may be null. If the text is null, then the cell must be invisible.

Vertical cell content alignment.