styledJFXTreeTableView

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.


fun <S : RecursiveTreeObject<S>> NodeManager.styledJFXTreeTableView(root: TreeItem<S>? = null, vararg styleClass: String, id: String? = null): JFXTreeTableView<S>

Add a styled JFXTreeTableView to this manager.

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>> NodeManager.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 manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.

configuration

the configuration block.