rangeSlider

fun NodeManager.rangeSlider(min: Double = 0.0, max: Double = 1.0, lowValue: Double = 0.25, highValue: Double = 0.75): RangeSlider

Add a RangeSlider to this manager.

Return

the control added.


inline fun rangeSlider(min: Double = 0.0, max: Double = 1.0, lowValue: Double = 0.25, highValue: Double = 0.75, configuration: RangeSlider.() -> Unit): RangeSlider

Create a RangeSlider with configuration block.

Return

the control created.

Parameters

configuration

the configuration block.


inline fun NodeManager.rangeSlider(min: Double = 0.0, max: Double = 1.0, lowValue: Double = 0.25, highValue: Double = 0.75, configuration: RangeSlider.() -> Unit): RangeSlider

Add a RangeSlider with configuration block to this manager.

Return

the control added.

Parameters

configuration

the configuration block.