styledJfxChip
inline fun <T> styledJfxChip(view: JFXChipView<T>, item: T, vararg styleClass: String, id: String? = null): JFXChip<T>
Create a styled JFXChip.
Return
the styled control created.
Parameters
styleClass
the CSS style class.
id
the CSS id.
inline fun <T> NodeContainer.styledJfxChip(view: JFXChipView<T>, item: T, vararg styleClass: String, id: String? = null): JFXChip<T>
Add a styled JFXChip to this container.
Return
the styled control added.
Parameters
styleClass
the CSS style class.
id
the CSS id.
inline fun <T> styledJfxChip(view: JFXChipView<T>, item: T, vararg styleClass: String, id: String? = null, configuration: JFXChip<T>.() -> Unit): JFXChip<T>
Create a styled JFXChip with configuration block.
Return
the styled control created.
Parameters
styleClass
the CSS style class.
id
the CSS id.
configuration
the configuration block.
inline fun <T> NodeContainer.styledJfxChip(view: JFXChipView<T>, item: T, vararg styleClass: String, id: String? = null, configuration: JFXChip<T>.() -> Unit): JFXChip<T>
Add a styled JFXChip 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.