styledColorPicker

fun styledColorPicker(color: Color = WHITE, vararg styleClass: String, id: String? = null): ColorPicker

Create a styled ColorPicker.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


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

Add a styled ColorPicker to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


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

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

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