styledJFXColorPicker

fun styledJFXColorPicker(color: Color = WHITE, vararg styleClass: String, id: String? = null): JFXColorPicker

Create a styled JFXColorPicker.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun NodeManager.styledJFXColorPicker(color: Color = WHITE, vararg styleClass: String, id: String? = null): JFXColorPicker

Add a styled JFXColorPicker to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun styledJFXColorPicker(color: Color = WHITE, vararg styleClass: String, id: String? = null, configuration: JFXColorPicker.() -> Unit): JFXColorPicker

Create a styled JFXColorPicker 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.styledJFXColorPicker(color: Color = WHITE, vararg styleClass: String, id: String? = null, configuration: JFXColorPicker.() -> Unit): JFXColorPicker

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