styledJfxTreeCell
Create a styled JFXTreeCell.
Return
the styled control created.
Parameters
styleClass
the CSS style class.
id
the CSS id.
inline fun <T> NodeContainer.styledJfxTreeCell(vararg styleClass: String, id: String? = null): JFXTreeCell<T>
Add a styled JFXTreeCell to this container.
Return
the styled control added.
Parameters
styleClass
the CSS style class.
id
the CSS id.
inline fun <T> styledJfxTreeCell(vararg styleClass: String, id: String? = null, configuration: JFXTreeCell<T>.() -> Unit): JFXTreeCell<T>
Create a styled JFXTreeCell 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.styledJfxTreeCell(vararg styleClass: String, id: String? = null, configuration: JFXTreeCell<T>.() -> Unit): JFXTreeCell<T>
Add a styled JFXTreeCell 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.