styledJFXDefaultChip

fun <T> styledJFXDefaultChip(view: JFXChipView<T>, item: T, vararg styleClass: String, id: String? = null): JFXDefaultChip<T>

Create a styled JFXDefaultChip.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


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

Add a styled JFXDefaultChip to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun <T> styledJFXDefaultChip(view: JFXChipView<T>, item: T, vararg styleClass: String, id: String? = null, configuration: JFXDefaultChip<T>.() -> Unit): JFXDefaultChip<T>

Create a styled JFXDefaultChip 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.styledJFXDefaultChip(view: JFXChipView<T>, item: T, vararg styleClass: String, id: String? = null, configuration: JFXDefaultChip<T>.() -> Unit): JFXDefaultChip<T>

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