styledSlider
inline fun styledSlider(min: Double = 0.0, max: Double = 100.0, value: Double = 0.0, vararg styleClass: String, id: String? = null): Slider
Create a styled Slider.
Return
the styled control created.
Parameters
styleClass
the CSS style class.
id
the CSS id.
inline fun NodeContainer.styledSlider(min: Double = 0.0, max: Double = 100.0, value: Double = 0.0, vararg styleClass: String, id: String? = null): Slider
Add a styled Slider to this container.
Return
the styled control added.
Parameters
styleClass
the CSS style class.
id
the CSS id.
inline fun styledSlider(min: Double = 0.0, max: Double = 100.0, value: Double = 0.0, vararg styleClass: String, id: String? = null, configuration: Slider.() -> Unit): Slider
Create a styled Slider with configuration block.
Return
the styled control created.
Parameters
styleClass
the CSS style class.
id
the CSS id.
configuration
the configuration block.
inline fun NodeContainer.styledSlider(min: Double = 0.0, max: Double = 100.0, value: Double = 0.0, vararg styleClass: String, id: String? = null, configuration: Slider.() -> Unit): Slider
Add a styled Slider with configuration block to this container.
Return
the styled control added.
Parameters
styleClass
the CSS style class.
id
the CSS id.
configuration
the configuration block.