styledJfxListCell
Create a styled JFXListCell.
Return
the styled control created.
Parameters
styleClass
the CSS style class.
id
the CSS id.
inline fun <T> NodeContainer.styledJfxListCell(vararg styleClass: String, id: String? = null): JFXListCell<T>
Add a styled JFXListCell to this container.
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> NodeContainer.styledJfxListCell(vararg styleClass: String, id: String? = null, configuration: JFXListCell<T>.() -> Unit): JFXListCell<T>
Add a styled JFXListCell 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.