interface LayoutGrid {
    $CreationOptions?: LayoutGridCreationOptions;
    $ID: string;
    $Type: "Pages$LayoutGrid";
    appearance: Appearance;
    conditionalVisibilitySettings: null | ConditionalVisibilitySettings;
    name: string;
    rows: LayoutGridRow[];
    tabIndex: number;
    width: ContainerWidth;
    addLayoutGridRow(options: LayoutGridRowCreationOptions): Promise<LayoutGridRow>;
}

Hierarchy (view full)

Properties

$CreationOptions?: LayoutGridCreationOptions

Options to pass during the element creation

$ID: string

The unique id of the element.

$Type

The type of the element.

appearance: Appearance
conditionalVisibilitySettings: null | ConditionalVisibilitySettings
name: string
tabIndex: number

Methods