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

    Interface IProgressIndicatorPropertyItemBeta

    A property item which supports ProgressIndicator properties

    interface IProgressIndicatorPropertyItem {
        enable: boolean;
        id: string;
        paneId: string;
        progress: undefined | number;
        typeName: PropertyItemType;
        visible: boolean;
        setTitle(title: undefined | LocalizedString): void;
        setTooltip(tooltip: undefined | LocalizedString): 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.

    progress: undefined | number

    Current progress of the property item.

    The type name of the target property.

    visible: boolean

    If the item should be visible in the UI.

    Methods

    • Beta

      Parameters

      Returns void

      Updates title of the property item.

    • Beta

      Parameters

      Returns void

      Updates tooltip description of property item.