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

    接口 ITextPropertyItem

    A property item which supports Text properties

    interface ITextPropertyItem {
        enable: boolean;
        id: string;
        paneId: string;
        typeName: PropertyItemType;
        value: Readonly<LocalizedString>;
        visible: boolean;
        setAlignment(alignment: LayoutAlignment): void;
        setTitle(title: LocalizedString): void;
    }

    层级 (查看层级一览)

    索引

    属性

    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.

    value: Readonly<LocalizedString>

    Current value of the property item.

    visible: boolean

    If the item should be visible in the UI.

    方法