A property item which supports Dropdown properties

interface IDropdownPropertyItem {
    enable: boolean;
    id: string;
    paneId: string;
    typeName: PropertyItemType;
    value: number;
    visible: boolean;
    getEntryByIndex(index: number): IDropdownPropertyItemEntry;
    getEntryByValue(value: number): IDropdownPropertyItemEntry;
    setTitle(title: LocalizedString): void;
    setTooltip(tooltip: LocalizedString): void;
    updateEntries(
        entries: IDropdownPropertyItemEntry[],
        newValue?: number,
    ): void;
}

Hierarchy (View Summary)

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.

value: number

Current selected entry value of the property item list.

visible: boolean

If the item should be visible in the UI.

Methods

  • Parameters

    • entries: IDropdownPropertyItemEntry[]

      New list of updated entries.

    • OptionalnewValue: number

      New value value to use for the dropdown.

    Returns void

    Update list of dropdown entries.