styledJFXCheckBox

fun styledJFXCheckBox(text: String? = null, vararg styleClass: String, id: String? = null): JFXCheckBox

Create a styled JFXCheckBox.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun NodeManager.styledJFXCheckBox(text: String? = null, vararg styleClass: String, id: String? = null): JFXCheckBox

Add a styled JFXCheckBox to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


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

Create a styled JFXCheckBox 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.styledJFXCheckBox(text: String? = null, vararg styleClass: String, id: String? = null, configuration: JFXCheckBox.() -> Unit): JFXCheckBox

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