@mendix/extensions-api - v0.2.4
    Preparing search index...

    Interface Table

    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 Summary)

    Index

    Properties

    $CreationOptions?: TableCreationOptions

    Options to pass during the element creation

    $ID: string

    The unique id of the element.

    $Type: "Pages$Table"

    The type of the element.

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

    Methods