styledJfxTreeView
inline 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.
inline fun <T> NodeContainer.styledJfxTreeView(root: TreeItem<T>? = null, vararg styleClass: String, id: String? = null): JFXTreeView<T>
Add a styled JFXTreeView to this container.
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> NodeContainer.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 container.
Return
the styled control added.
Parameters
styleClass
the CSS style class.
id
the CSS id.
configuration
the configuration block.