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;} Copy
export interface IModalControlPane extends IPane { addBool(value: IObservableProp<boolean>, options?: IBoolPropertyItemOptions): IBoolPropertyItem; addButton( action: ButtonPropertyItemSupportedActionTypes, options?: IButtonPropertyItemOptions, ): IButtonPropertyItem; addButtonPane(options?: IButtonPanePropertyItemOptions): IButtonPanePropertyItem; addDivider(): IPropertyItemBase;}
Readonly
Unique identifier for the pane.
Check visibility of the pane
Optional
Adds a togglable boolean item to the pane.
Adds a button to the pane and binds the specified action to the button activation.
Adds a pane for grouped button layout.
Adds an divider item to the pane.
Hide the pane.
Show the pane and all of its items.
A sub pane for modal control elements.
Source