styledPane

fun styledPane(vararg styleClass: String, id: String? = null): Pane

Create a styled Pane.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun NodeManager.styledPane(vararg styleClass: String, id: String? = null): Pane

Add a styled Pane to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun styledPane(vararg styleClass: String, id: String? = null, configuration: KtfxPane.() -> Unit): Pane

Create a styled Pane 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.styledPane(vararg styleClass: String, id: String? = null, configuration: KtfxPane.() -> Unit): Pane

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