styledStackPane

fun styledStackPane(vararg styleClass: String, id: String? = null): StackPane

Create a styled StackPane.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun NodeManager.styledStackPane(vararg styleClass: String, id: String? = null): StackPane

Add a styled StackPane to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun styledStackPane(vararg styleClass: String, id: String? = null, configuration: KtfxStackPane.() -> Unit): StackPane

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

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