styledRangeSlider

fun styledRangeSlider(min: Double = 0.0, max: Double = 1.0, lowValue: Double = 0.25, highValue: Double = 0.75, vararg styleClass: String, id: String? = null): RangeSlider

Create a styled RangeSlider.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun NodeManager.styledRangeSlider(min: Double = 0.0, max: Double = 1.0, lowValue: Double = 0.25, highValue: Double = 0.75, vararg styleClass: String, id: String? = null): RangeSlider

Add a styled RangeSlider to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun styledRangeSlider(min: Double = 0.0, max: Double = 1.0, lowValue: Double = 0.25, highValue: Double = 0.75, vararg styleClass: String, id: String? = null, configuration: RangeSlider.() -> Unit): RangeSlider

Create a styled RangeSlider 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.styledRangeSlider(min: Double = 0.0, max: Double = 1.0, lowValue: Double = 0.25, highValue: Double = 0.75, vararg styleClass: String, id: String? = null, configuration: RangeSlider.() -> Unit): RangeSlider

Add a styled RangeSlider 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.