@minecraft
    正在准备搜索索引...

    接口 IModalOverlayPane

    A modal overlay pane is displayed over a root pane.

    interface IModalOverlayPane {
        contentPane: ISubPanePropertyItem;
        controlPane: IModalControlPane;
        id: string;
        visible: boolean;
        hide(): void;
        show(): void;
    }

    层级 (查看层级一览)

    索引

    属性

    A sub pane that represents content of the modal overlay.

    controlPane: IModalControlPane

    A pane that represent modal control elements.

    id: string

    Unique identifier for the pane.

    visible: boolean

    Check visibility of the pane

    方法