styledColorPicker
inline 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.
inline fun NodeContainer.styledColorPicker(color: Color = WHITE, vararg styleClass: String, id: String? = null): ColorPicker
Add a styled ColorPicker to this container.
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 NodeContainer.styledColorPicker(color: Color = WHITE, vararg styleClass: String, id: String? = null, configuration: ColorPicker.() -> Unit): ColorPicker
Add a styled ColorPicker 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.