styledJFXSlider

fun styledJFXSlider(min: Double = 0.0, max: Double = 100.0, value: Double = 50.0, vararg styleClass: String, id: String? = null): JFXSlider

Create a styled JFXSlider.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun NodeManager.styledJFXSlider(min: Double = 0.0, max: Double = 100.0, value: Double = 50.0, vararg styleClass: String, id: String? = null): JFXSlider

Add a styled JFXSlider to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun styledJFXSlider(min: Double = 0.0, max: Double = 100.0, value: Double = 50.0, vararg styleClass: String, id: String? = null, configuration: JFXSlider.() -> Unit): JFXSlider

Create a styled JFXSlider 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.styledJFXSlider(min: Double = 0.0, max: Double = 100.0, value: Double = 50.0, vararg styleClass: String, id: String? = null, configuration: JFXSlider.() -> Unit): JFXSlider

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