interface IPropertyItemOptionsNumber {
    enable?: boolean;
    max?: number;
    min?: number;
    onChange?: OnChangeCallback<PropertyBag, string>;
    showSlider?: boolean;
    titleAltText?: string;
    titleStringId?: string;
    visible?: boolean;
}

Hierarchy (View Summary)

Properties

enable?: boolean

If the item is enabled in the UI.

max?: number

The min possible value for the number.

min?: number

The max possible value for the number.

onChange?: OnChangeCallback<PropertyBag, string>

Callback to execute when the value is updated.

showSlider?: boolean

If UI should show slider control.

titleAltText?: string

Fallback display text if no loc ID

titleStringId?: string

Loc ID (resolved on client)

visible?: boolean

If the item should be visible in the UI.