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

    Interface TabContainer

    interface TabContainer {
        $CreationOptions?: TabContainerCreationOptions;
        $ID: string;
        $Type: "Pages$TabContainer";
        activePageAttributeRef: null | AttributeRef;
        activePageOnChangeAction: ClientAction;
        activePageSourceVariable: null | PageVariable;
        appearance: Appearance;
        conditionalVisibilitySettings: null | ConditionalVisibilitySettings;
        defaultPage: null | string;
        name: string;
        tabIndex: number;
        tabPages: TabPage[];
        addTabPage(options: TabPageCreationOptions): Promise<TabPage>;
        getTabPage(name: string): undefined | TabPage;
    }

    Hierarchy (View Summary)

    Index

    Properties

    $CreationOptions?: TabContainerCreationOptions

    Options to pass during the element creation

    $ID: string

    The unique id of the element.

    $Type: "Pages$TabContainer"

    The type of the element.

    activePageAttributeRef: null | AttributeRef
    activePageOnChangeAction: ClientAction
    activePageSourceVariable: null | PageVariable
    appearance: Appearance
    conditionalVisibilitySettings: null | ConditionalVisibilitySettings
    defaultPage: null | string
    name: string
    tabIndex: number
    tabPages: TabPage[]

    Methods

    • Parameters

      • name: string

      Returns undefined | TabPage