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