styledSlider

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.


fun NodeManager.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 manager.

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 NodeManager.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 manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.

configuration

the configuration block.