styledJFXTreeView

fun <T> styledJFXTreeView(root: TreeItem<T>? = null, vararg styleClass: String, id: String? = null): JFXTreeView<T>

Create a styled JFXTreeView.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun <T> NodeManager.styledJFXTreeView(root: TreeItem<T>? = null, vararg styleClass: String, id: String? = null): JFXTreeView<T>

Add a styled JFXTreeView to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun <T> styledJFXTreeView(root: TreeItem<T>? = null, vararg styleClass: String, id: String? = null, configuration: JFXTreeView<T>.() -> Unit): JFXTreeView<T>

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

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