styledRegion

fun styledRegion(vararg styleClass: String, id: String? = null): Region

Create a styled Region.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun NodeManager.styledRegion(vararg styleClass: String, id: String? = null): Region

Add a styled Region to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun styledRegion(vararg styleClass: String, id: String? = null, configuration: Region.() -> Unit): Region

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

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