class
Range


Known Subclasses:  HorizontalRange, Progress, VerticalRange

A range bar component, that starts from min and ends at max, defaults to 0-100.

behaviour
bindable
clonable
end:Float
The value this range bar's filled section ends at.
behaviour
bindable
clonable
max:Null<Float>
The value this range bar ends at, used to calculate the ending position of the filled section. Defaults to 100
behaviour
bindable
clonable
min:Null<Float>
The value this range bar starts from, used to calculate the starting position of the filled section. Defaults to 0.
behaviour
bindable
clonable
precision:Int
The amount of numbers after the decimal points that should be taken into account when calculating the position of the filled section.
behaviour
bindable
clonable
start:Null<Float>
The value this range bar's filled section starts at.
behaviour
bindable
clonable
step:Float
The amount of snapping that should be applied to the position of the filled section.

For example, if the range bar starts at 0 and ends at 100, and the offset is set to step is set to 10, if we set the start to 6 and the end to 54, the visually filled range would be from 10 to 50.


override
cloneComponent():Range