Script API - v1.26.30.25
    Preparing search index...

    A sub pane for modal control elements.

    export interface IModalControlPane extends IPane {
    addBool(value: IObservableProp<boolean>, options?: IBoolPropertyItemOptions): IBoolPropertyItem;
    addButton(
    action: ButtonPropertyItemSupportedActionTypes,
    options?: IButtonPropertyItemOptions,
    ): IButtonPropertyItem;
    addButtonPane(options?: IButtonPanePropertyItemOptions): IButtonPanePropertyItem;
    addDivider(): IPropertyItemBase;
    }
    interface IModalControlPane {
        id: string;
        visible: boolean;
        addBool(
            value: IObservableProp<boolean>,
            options?: IBoolPropertyItemOptions,
        ): IBoolPropertyItem;
        addButton(
            action: ButtonPropertyItemSupportedActionTypes,
            options?: IButtonPropertyItemOptions,
        ): IButtonPropertyItem;
        addButtonPane(
            options?: IButtonPanePropertyItemOptions,
        ): IButtonPanePropertyItem;
        addDivider(): IPropertyItemBase;
        hide(): void;
        show(): void;
    }

    Hierarchy (View Summary)

    Index

    Properties

    id: string

    Unique identifier for the pane.

    visible: boolean

    Check visibility of the pane

    Methods

    • Returns void

      Hide the pane.

    • Returns void

      Show the pane and all of its items.