Pane represents a container for UI components.

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

层级 (查看层级一览)

属性

方法

属性

id: string

Unique identifier for the pane.

visible: boolean

Check visibility of the pane

方法