jfxRadioButton

fun NodeManager.jfxRadioButton(text: String? = null): JFXRadioButton
fun ToggleButtonManager.jfxRadioButton(text: String? = null): JFXRadioButton

Add a JFXRadioButton to this manager.

Return

the control added.


inline fun jfxRadioButton(text: String? = null, configuration: JFXRadioButton.() -> Unit): JFXRadioButton

Create a JFXRadioButton with configuration block.

Return

the control created.

Parameters

configuration

the configuration block.


inline fun NodeManager.jfxRadioButton(text: String? = null, configuration: JFXRadioButton.() -> Unit): JFXRadioButton
inline fun ToggleButtonManager.jfxRadioButton(text: String? = null, configuration: JFXRadioButton.() -> Unit): JFXRadioButton

Add a JFXRadioButton with configuration block to this manager.

Return

the control added.

Parameters

configuration

the configuration block.