A property item which supports Number properties
export interface INumberPropertyItem extends IPropertyItemBase { readonly value: Readonly<number>; setTitle(title: LocalizedString | undefined): void; setTooltip(tooltip: BasicTooltipContent | undefined): void; updateLimits(limits: { min?: number; max?: number }): void;} Copy
export interface INumberPropertyItem extends IPropertyItemBase { readonly value: Readonly<number>; setTitle(title: LocalizedString | undefined): void; setTooltip(tooltip: BasicTooltipContent | undefined): void; updateLimits(limits: { min?: number; max?: number }): 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 description of property item.
Updates number limits and clamps the current value.
A property item which supports Number properties
Source