styledJFXListView

fun <T> styledJFXListView(vararg styleClass: String, id: String? = null): JFXListView<T>

Create a styled JFXListView.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


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

Add a styled JFXListView to this manager.

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> NodeManager.styledJFXListView(vararg styleClass: String, id: String? = null, configuration: JFXListView<T>.() -> Unit): JFXListView<T>

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