styledGroup

fun styledGroup(vararg styleClass: String, id: String? = null): Group

Create a styled Group.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun NodeManager.styledGroup(vararg styleClass: String, id: String? = null): Group

Add a styled Group to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun styledGroup(vararg styleClass: String, id: String? = null, configuration: KtfxGroup.() -> Unit): Group

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

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