styledHBox

fun styledHBox(spacing: Double = 0.0, vararg styleClass: String, id: String? = null): HBox

Create a styled HBox.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


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

Add a styled HBox to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun styledHBox(spacing: Double = 0.0, vararg styleClass: String, id: String? = null, configuration: KtfxHBox.() -> Unit): HBox

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

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