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