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

    Interface Layout

    interface Layout {
        $CreationOptions?: LayoutCreationOptions;
        $ID: string;
        $Type: "Pages$Layout";
        appearance: Appearance;
        canvasHeight: number;
        canvasWidth: number;
        content: LayoutContent;
        documentation: string;
        excluded: boolean;
        exportLevel: ExportLevel;
        name: string;
        parameters: LayoutParameter[];
        addLayoutParameter(
            options: LayoutParameterCreationOptions,
        ): Promise<LayoutParameter>;
        getLayoutParameter(name: string): undefined | LayoutParameter;
    }

    Hierarchy (View Summary)

    Index

    Properties

    $CreationOptions?: LayoutCreationOptions

    Options to pass during the element creation

    $ID: string

    The unique id of the element.

    $Type: "Pages$Layout"

    The type of the element.

    appearance: Appearance
    canvasHeight: number
    canvasWidth: number
    content: LayoutContent
    documentation: string
    excluded: boolean
    exportLevel: ExportLevel
    name: string
    parameters: LayoutParameter[]

    Methods