jfxTreeView

fun <T> NodeManager.jfxTreeView(root: TreeItem<T>? = null): JFXTreeView<T>

Add a JFXTreeView to this manager.

Return

the control added.


inline fun <T> jfxTreeView(root: TreeItem<T>? = null, configuration: JFXTreeView<T>.() -> Unit): JFXTreeView<T>

Create a JFXTreeView with configuration block.

Return

the control created.

Parameters

configuration

the configuration block.


inline fun <T> NodeManager.jfxTreeView(root: TreeItem<T>? = null, configuration: JFXTreeView<T>.() -> Unit): JFXTreeView<T>

Add a JFXTreeView with configuration block to this manager.

Return

the control added.

Parameters

configuration

the configuration block.