class
Slider


Known Subclasses:  HorizontalSlider, VerticalSlider

A slider component, containing a thumb and a track to move the thumb along.

behaviour
bindable
clonable
center:Null<Float>
When defined & two thumbs are present, provides an offset to the actual center:

the leftmost thumb will always be before the center, and the rightmost thumb will always be after the center.
behaviour
bindable
clonable
end:Float
The value the fill of the slider ends at.

When start is defined, another moveable thumb will appear at the position end.
behaviour
bindable
clonable
majorTicks:Null<Float>
When defined, creates ticks each time a value divisible by majorTicks is reached.

in horizontal sliders, by default, the ticks apper below slider
behaviour
bindable
clonable
max:Float
The maximum value of the slider. used to calculate the thumb's position.
behaviour
bindable
clonable
min:Float
The minimum value of the slider. used to calculate the thumb's position.
behaviour
bindable
clonable
minorTicks:Null<Float>
When defined, creates little ticks each time a value divisible by minorTicks is reached.

in horizontal sliders, by default, the ticks apper below slider
behaviour
bindable
clonable
pos:Float
The value the thumb is currently at.
behaviour
bindable
clonable
precision:Null<Int>
How many numbers after the decimal points are calculated for the position of the thumb.
behaviour
bindable
clonable
start:Null<Float>
The value the fill of the slider starts from.

When end is defined, another moveable thumb will appear at the position start.
behaviour
bindable
clonable
step:Null<Float>
When defined, snaps the thumb to the nearest step, example:

if pos is 6 and step is 10, the thumb will be moved to 10.


override
cloneComponent():Slider