@minecraft/server-editor
    Preparing search index...

    Interface IButtonPanePropertyItemBeta

    A property item pane which supports multiple buttons

    interface IButtonPanePropertyItem {
        enable: boolean;
        id: string;
        paneId: string;
        typeName: PropertyItemType;
        visible: boolean;
        addButton(
            action: ButtonPropertyItemSupportedActionTypes,
            options?: IButtonPropertyItemOptions,
        ): IButtonPropertyItem;
        hide(): void;
        show(): void;
    }

    Hierarchy (View Summary)

    Index

    Properties

    enable: boolean

    If the item is enabled in the UI.

    id: string

    Unique ID for the property item.

    paneId: string

    The parent pane id.

    The type name of the target property.

    visible: boolean

    If the item should be visible in the UI.

    Methods

    • Beta

      Returns void

      Hide the pane.

    • Beta

      Returns void

      Show the pane and all of its items.