styledButtonBar

fun styledButtonBar(buttonOrder: String? = null, vararg styleClass: String, id: String? = null): ButtonBar

Create a styled ButtonBar.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun NodeManager.styledButtonBar(buttonOrder: String? = null, vararg styleClass: String, id: String? = null): ButtonBar

Add a styled ButtonBar to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun styledButtonBar(buttonOrder: String? = null, vararg styleClass: String, id: String? = null, configuration: KtfxButtonBar.() -> Unit): ButtonBar

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

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