styledJfxSlider
inline 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.
inline fun NodeContainer.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 container.
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 NodeContainer.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 container.
Return
the styled control added.
Parameters
styleClass
the CSS style class.
id
the CSS id.
configuration
the configuration block.