styledVBox

fun styledVBox(spacing: Double = 0.0, vararg styleClass: String, id: String? = null): VBox

Create a styled VBox.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun NodeManager.styledVBox(spacing: Double = 0.0, vararg styleClass: String, id: String? = null): VBox

Add a styled VBox to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun styledVBox(spacing: Double = 0.0, vararg styleClass: String, id: String? = null, configuration: KtfxVBox.() -> Unit): VBox

Create a styled VBox 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.styledVBox(spacing: Double = 0.0, vararg styleClass: String, id: String? = null, configuration: KtfxVBox.() -> Unit): VBox

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