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

    Interface ButtonOptionsBeta

    The options for including a button in CustomForm.

    interface ButtonOptions {
        disabled?: boolean | Observable<boolean>;
        tooltip?: string | Observable<string> | UIRawMessage;
        visible?: boolean | Observable<boolean>;
    }
    Index

    Properties

    disabled?: boolean | Observable<boolean>

    Whether or not this button is disabled.

    tooltip?: string | Observable<string> | UIRawMessage

    The tooltip for this button, shown when hovering the button.

    visible?: boolean | Observable<boolean>

    Whether or not this button is visible.