Interface: INumberPropertyItemOptions experimental
Beta
Optional properties for Number property item
Extends
Properties
enable?
optionalenable?:boolean
Beta
Remarks
Initial enabled state of property item. If undefined, it will default to true.
Inherited from
IPropertyItemOptionsBase.enable
hiddenLabel?
optionalhiddenLabel?:boolean
Beta
Remarks
If true label text will be hidden. If undefined, the label will be visible by default.
isInteger?
optionalisInteger?:boolean
Beta
Remarks
If we should treat the number as integer. By default is false.
max?
optionalmax?:number
Beta
Remarks
The min possible number. If undefined, Number.MAX_SAFE_INTEGER will be used.
min?
optionalmin?:number
Beta
Remarks
The min possible number. If undefined, Number.MIN_SAFE_INTEGER will be used.
onChange?
optionalonChange?: (newValue,oldValue) =>void
Beta
Parameters
newValue
number
oldValue
number
Returns
void
Remarks
This callback is called when UI control value is changed.
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.
variant?
optionalvariant?:NumberPropertyItemVariant
Beta
Remarks
Determines how we display bool as a UI element. If undefined, it will default to InputField.
visible?
optionalvisible?:boolean
Beta
Remarks
Initial visibility state of property item. If undefined, it will default to true.
