Interface: IComboBoxPropertyItemOptions experimental
Beta
Optional properties for ComboBox property item
Extends
Properties
dataType?
optionaldataType?:ComboBoxPropertyItemDataType
Beta
Remarks
Possible data types supported by combo box. If undefined, it will be Custom by default.
defaultValue?
optionaldefaultValue?:string
Beta
Remarks
Default value to fall back to if entry is not found. If undefined, data type will determine the default value (empty string for Custom data type).
enable?
optionalenable?:boolean
Beta
Remarks
Initial enabled state of property item. If undefined, it will default to true.
Inherited from
IPropertyItemOptionsBase.enable
entries?
optionalentries?:IComboBoxPropertyItemEntry[]
Beta
Remarks
List of combo box entries. If undefined, data type will determine the default list (empty list for Custom data type).
hiddenLabel?
optionalhiddenLabel?:boolean
Beta
Remarks
If true label text will be hidden. It will be visible by default.
onChange?
optionalonChange?: (newValue,oldValue) =>void
Beta
Parameters
newValue
string
oldValue
string
Returns
void
Remarks
This callback is called when UI control value is changed.
showImage?
optionalshowImage?:boolean
Beta
Remarks
If true the image for the selected value will be displayed (if data type supports it). If undefined, it will default to false.
style?
optionalstyle?:PaneItemStyle
Beta
Remarks
Optional styling overrides for the item.
Inherited from
IPropertyItemOptionsBase.style
title?
optionaltitle?:LocalizedString
Beta
Remarks
Localized title of the property item.
tooltip?
optionaltooltip?:BasicTooltipContent
Beta
Remarks
Tooltip description of the property item.
visible?
optionalvisible?:boolean
Beta
Remarks
Initial visibility state of property item. If undefined, it will default to true.
