treeView

fun <T> NodeManager.treeView(root: TreeItem<T>? = null): TreeView<T>

Add a TreeView to this manager.

Return

the control added.


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

Create a TreeView with configuration block.

Return

the control created.

Parameters

configuration

the configuration block.


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

Add a TreeView with configuration block to this manager.

Return

the control added.

Parameters

configuration

the configuration block.