styledJfxCheckBox

inline 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.


inline fun NodeContainer.styledJfxCheckBox(text: String? = null, vararg styleClass: String, id: String? = null): JFXCheckBox

Add a styled JFXCheckBox to this container.

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

Add a styled JFXCheckBox with configuration block to this container.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.

configuration

the configuration block.