Pane represents a container for UI components.

interface IPane {
    id: string;
    visible: boolean;
    hide(): void;
    show(): void;
}

Hierarchy (View Summary)

Properties

Methods

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.