styledJFXChip

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.


fun <T> NodeManager.styledJFXChip(view: JFXChipView<T>, item: T, vararg styleClass: String, id: String? = null): JFXChip<T>

Add a styled JFXChip to this manager.

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> NodeManager.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 manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.

configuration

the configuration block.