styledJFXChipView

fun <T> styledJFXChipView(vararg styleClass: String, id: String? = null): JFXChipView<T>

Create a styled JFXChipView.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun <T> NodeManager.styledJFXChipView(vararg styleClass: String, id: String? = null): JFXChipView<T>

Add a styled JFXChipView to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


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

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

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