Logo


search API (or start typing anywhere)


SliderOptions

mint.SliderOptions

Options for constructing a Slider


typedef


   

Members


y
y : Null<Float>
The control y position, relative to its container
x
x : Null<Float>
The control x position, relative to its container
w_min
w_min : Null<Float>
The control minimum width
w_max
w_max : Null<Float>
The control maximum width
w
w : Null<Float>
The control width
visible
visible : Null<Bool>
Whether or not the control is visible at creation
vertical
vertical : Null<Bool>
Whether or not the slider is vertical. default: false
value
value : Null<Float>
The slider initial value. default: 1
step
step : Null<Float>
The slider step value. default: none
rendering
rendering : Null<mint.render.Rendering>
The render service that provides this instance with an implementation. Defaults to using the owning canvas render service if not specified
renderable
renderable : Null<Bool>
Whether or not the control emits render signals from the canvas render call
parent
parent : Null<mint.Control>
The control parent, if any
options
options : Null<>
Generic framework/user specific options, which can be strong typed on the receiving end.
name
name : Null<String>
The control name
mouse_input
mouse_input : Null<Bool>
Whether or not the control responds to mouse input
min
min : Null<Float>
The slider minimum value. default: 0
max
max : Null<Float>
The slider maximum value. default: 1
key_input
key_input : Null<Bool>
Whether or not the control responds to key input
invert
invert : Null<Bool>
Inverts the sliders default direction. If true, horizontal slider goes from right to left and vertical slider from top to bottom. default: false
h_min
h_min : Null<Float>
The control minimum height
h_max
h_max : Null<Float>
The control maximum height
h
h : Null<Float>
The control height
depth
depth : Null<Float>
The control depth. Usually set internally