Pane represents a container for UI components.
export interface IPane { readonly id: string; visible: boolean; hide(): void; show(): void;} Copy
export interface IPane { readonly id: string; visible: boolean; hide(): void; show(): void;}
Readonly
Unique identifier for the pane.
Check visibility of the pane
Hide the pane.
Show the pane and all of its items.
Pane represents a container for UI components.
Source