styledJfxTreeTableView
inline fun <S : RecursiveTreeObject<S>> styledJfxTreeTableView(root: TreeItem<S>? = null, vararg styleClass: String, id: String? = null): JFXTreeTableView<S>
Create a styled JFXTreeTableView.
Return
the styled control created.
Parameters
styleClass
the CSS style class.
id
the CSS id.
inline fun <S : RecursiveTreeObject<S>> NodeContainer.styledJfxTreeTableView(root: TreeItem<S>? = null, vararg styleClass: String, id: String? = null): JFXTreeTableView<S>
Add a styled JFXTreeTableView to this container.
Return
the styled control added.
Parameters
styleClass
the CSS style class.
id
the CSS id.
inline fun <S : RecursiveTreeObject<S>> styledJfxTreeTableView(root: TreeItem<S>? = null, vararg styleClass: String, id: String? = null, configuration: JFXTreeTableView<S>.() -> Unit): JFXTreeTableView<S>
Create a styled JFXTreeTableView with configuration block.
Return
the styled control created.
Parameters
styleClass
the CSS style class.
id
the CSS id.
configuration
the configuration block.
inline fun <S : RecursiveTreeObject<S>> NodeContainer.styledJfxTreeTableView(root: TreeItem<S>? = null, vararg styleClass: String, id: String? = null, configuration: JFXTreeTableView<S>.() -> Unit): JFXTreeTableView<S>
Add a styled JFXTreeTableView 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.