styledScrollPane

fun styledScrollPane(content: Node? = null, vararg styleClass: String, id: String? = null): ScrollPane

Create a styled ScrollPane.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun NodeManager.styledScrollPane(content: Node? = null, vararg styleClass: String, id: String? = null): ScrollPane

Add a styled ScrollPane to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun styledScrollPane(content: Node? = null, vararg styleClass: String, id: String? = null, configuration: KtfxScrollPane.() -> Unit): ScrollPane

Create a styled ScrollPane 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.styledScrollPane(content: Node? = null, vararg styleClass: String, id: String? = null, configuration: KtfxScrollPane.() -> Unit): ScrollPane

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