styledJFXRadioButton

fun styledJFXRadioButton(text: String? = null, vararg styleClass: String, id: String? = null): JFXRadioButton

Create a styled JFXRadioButton.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun NodeManager.styledJFXRadioButton(text: String? = null, vararg styleClass: String, id: String? = null): JFXRadioButton
fun ToggleButtonManager.styledJFXRadioButton(text: String? = null, vararg styleClass: String, id: String? = null): JFXRadioButton

Add a styled JFXRadioButton to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun styledJFXRadioButton(text: String? = null, vararg styleClass: String, id: String? = null, configuration: JFXRadioButton.() -> Unit): JFXRadioButton

Create a styled JFXRadioButton 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.styledJFXRadioButton(text: String? = null, vararg styleClass: String, id: String? = null, configuration: JFXRadioButton.() -> Unit): JFXRadioButton
inline fun ToggleButtonManager.styledJFXRadioButton(text: String? = null, vararg styleClass: String, id: String? = null, configuration: JFXRadioButton.() -> Unit): JFXRadioButton

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