A property item which supports toggle button properties

interface IToggleGroupPropertyItem {
    enable: boolean;
    id: string;
    paneId: string;
    typeName: PropertyItemType;
    value: number;
    visible: boolean;
    getEntryByIndex(index: number): IToggleGroupPropertyItemEntry;
    getEntryByValue(value: number): IToggleGroupPropertyItemEntry;
    setTitle(title: LocalizedString): void;
    setTooltip(tooltip: LocalizedString): void;
    updateEntries(
        entries: IToggleGroupPropertyItemEntry[],
        newValue?: number,
    ): 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: number

Current selected entry value.

visible: boolean

If the item should be visible in the UI.

方法