styledJfxDefaultChip

inline 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.


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

Add a styled JFXDefaultChip to this container.

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> NodeContainer.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 container.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.

configuration

the configuration block.