interface Table {
    $CreationOptions?: TableCreationOptions;
    $ID: string;
    $Type: "Pages$Table";
    appearance: Appearance;
    cells: TableCell[];
    columns: TableColumn[];
    conditionalVisibilitySettings: null | ConditionalVisibilitySettings;
    name: string;
    rows: TableRow[];
    tabIndex: number;
    widthUnit: UnitEnum;
    addTableCell(): Promise<TableCell>;
    addTableColumn(): Promise<TableColumn>;
    addTableRow(): Promise<TableRow>;
}

Hierarchy (view full)

Properties

$CreationOptions?: TableCreationOptions

Options to pass during the element creation

$ID: string

The unique id of the element.

$Type

The type of the element.

appearance: Appearance
cells: TableCell[]
columns: TableColumn[]
conditionalVisibilitySettings: null | ConditionalVisibilitySettings
name: string
rows: TableRow[]
tabIndex: number
widthUnit: UnitEnum

Methods