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): LayoutParameter;
}

Hierarchy (view full)

Properties

$CreationOptions?: LayoutCreationOptions

Options to pass during the element creation

$ID: string

The unique id of the element.

$Type

The type of the element.

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

Methods