jfxSlider
inline fun NodeContainer.jfxSlider(min: Double = 0.0, max: Double = 100.0, value: Double = 50.0): JFXSlider
Add a JFXSlider to this container.
Return
the control added.
inline fun jfxSlider(min: Double = 0.0, max: Double = 100.0, value: Double = 50.0, configuration: JFXSlider.() -> Unit): JFXSlider
Create a JFXSlider with configuration block.
Return
the control created.
Parameters
configuration
the configuration block.
inline fun NodeContainer.jfxSlider(min: Double = 0.0, max: Double = 100.0, value: Double = 50.0, configuration: JFXSlider.() -> Unit): JFXSlider
Add a JFXSlider with configuration block to this container.
Return
the control added.
Parameters
configuration
the configuration block.