styledJFXListCell

fun <T> styledJFXListCell(vararg styleClass: String, id: String? = null): JFXListCell<T>

Create a styled JFXListCell.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


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

Add a styled JFXListCell to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


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

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

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