styledCheckBox

fun styledCheckBox(text: String? = null, vararg styleClass: String, id: String? = null): CheckBox

Create a styled CheckBox.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun NodeManager.styledCheckBox(text: String? = null, vararg styleClass: String, id: String? = null): CheckBox

Add a styled CheckBox to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


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

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

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