A sub pane for modal control elements.

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;
}

层级 (查看层级一览)

属性

id: string

Unique identifier for the pane.

visible: boolean

Check visibility of the pane

方法