A property item which supports Combo Box properties
export interface IComboBoxPropertyItem extends IPropertyItemBase { readonly value: string; setTitle(title: LocalizedString | undefined): void; setTooltip(tooltip: BasicTooltipContent | undefined): void; updateEntries(entries: IComboBoxPropertyItemEntry[] | undefined, newValue?: string): void;} Copy
export interface IComboBoxPropertyItem extends IPropertyItemBase { readonly value: string; setTitle(title: LocalizedString | undefined): void; setTooltip(tooltip: BasicTooltipContent | undefined): void; updateEntries(entries: IComboBoxPropertyItemEntry[] | undefined, newValue?: string): void;}
If the item is enabled in the UI.
Readonly
Unique ID for the property item.
The parent pane id.
The type name of the target property.
Current value of the property item.
If the item should be visible in the UI.
New title.
Updates title of the property item.
New tooltip.
Updates tooltip of the property item.
New list of updated entries.
Optional
New value to use for the combo box.
Update list of combo box entries.
A property item which supports Combo Box properties
Source