styledScrollBar

fun styledScrollBar(vararg styleClass: String, id: String? = null): ScrollBar

Create a styled ScrollBar.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun NodeManager.styledScrollBar(vararg styleClass: String, id: String? = null): ScrollBar

Add a styled ScrollBar to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun styledScrollBar(vararg styleClass: String, id: String? = null, configuration: ScrollBar.() -> Unit): ScrollBar

Create a styled ScrollBar with configuration block.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.

configuration

the configuration block.


inline fun NodeManager.styledScrollBar(vararg styleClass: String, id: String? = null, configuration: ScrollBar.() -> Unit): ScrollBar

Add a styled ScrollBar 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.