class
NumberStepper

package haxe.ui.components

↪ haxe.ui.components.NumberStepper

A normal stepper that can be used to increment or decrement a number. To do so, you can use the
visual arrow buttons, arrow keys or just by typing in the stepper's text field.

behaviour
bindable
clonable
autoCorrect:Bool
If true, overflowing values will be fixed to the closest, valid value.

for example, if the user types 20, but the maximum is 10, the value will automatically be set to 10.
behaviour
bindable
clonable
decimalSeparator:String
The character that will be used to separate decimals (eg 100.00 or 100,00)
behaviour
bindable
clonable
max:Null<Float>
The Highest value this stepper can get to, even when set through code.
behaviour
bindable
clonable
min:Null<Float>
The lowest value this stepper can get to, even when set through code.
behaviour
bindable
clonable
pos:Null<Float>
The actual value of the number stepper.
behaviour
bindable
clonable
precision:Null<Int>
The amount of numbers displayed after the decimal point.

0 or null means that no decimal point is displayed. defaults to null.
behaviour
bindable
clonable
step:Float
The amount by which the value is increased or decreased when the user presses the up or down buttons.


override
cloneComponent():NumberStepper