styledScrollPane
inline 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.
inline fun NodeContainer.styledScrollPane(content: Node? = null, vararg styleClass: String, id: String? = null): ScrollPane
Add a styled ScrollPane to this container.
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 NodeContainer.styledScrollPane(content: Node? = null, vararg styleClass: String, id: String? = null, configuration: KtfxScrollPane.() -> Unit): ScrollPane
Add a styled ScrollPane 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.