interface Page {
    $CreationOptions?: PageCreationOptions;
    $ID: string;
    $Type: "Pages$Page";
    allowedRoles: string[];
    appearance: Appearance;
    canvasHeight: number;
    canvasWidth: number;
    documentation: string;
    excluded: boolean;
    exportLevel: ExportLevel;
    layoutCall: LayoutCall;
    markAsUsed: boolean;
    name: string;
    parameter: string;
    parameters: PageParameter[];
    popupCloseAction: string;
    popupHeight: number;
    popupResizable: boolean;
    popupWidth: number;
    title: Text;
    url: string;
    variables: LocalVariable[];
    addLocalVariable(options: LocalVariableCreationOptions): Promise<LocalVariable>;
    addPageParameter(options: PageParameterCreationOptions): Promise<PageParameter>;
    getLocalVariable(name: string): LocalVariable;
    getPageParameter(name: string): PageParameter;
}

Hierarchy (view full)

Properties

$CreationOptions?: PageCreationOptions

Options to pass during the element creation

$ID: string

The unique id of the element.

$Type

The type of the element.

allowedRoles: string[]
appearance: Appearance
canvasHeight: number
canvasWidth: number
documentation: string
excluded: boolean
exportLevel: ExportLevel
layoutCall: LayoutCall
markAsUsed: boolean
name: string
parameter: string
parameters: PageParameter[]
popupCloseAction: string
popupHeight: number
popupResizable: boolean
popupWidth: number
title: Text
url: string
variables: LocalVariable[]

Methods