Interface PageBlockTable

A table. Subtype of PageBlock.

interface PageBlockTable {
    @type: "pageBlockTable";
    caption: RichText;
    cells: PageBlockTableCell[][];
    is_bordered?: boolean;
    is_striped?: boolean;
}

Properties

@type: "pageBlockTable"
caption: RichText

Table caption.

Table cells.

is_bordered?: boolean

True, if the table is bordered.

is_striped?: boolean

True, if the table is striped.