styledJFXButton

fun styledJFXButton(text: String? = null, graphic: Node? = null, vararg styleClass: String, id: String? = null): JFXButton

Create a styled JFXButton.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun NodeManager.styledJFXButton(text: String? = null, graphic: Node? = null, vararg styleClass: String, id: String? = null): JFXButton

Add a styled JFXButton to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun styledJFXButton(text: String? = null, graphic: Node? = null, vararg styleClass: String, id: String? = null, configuration: JFXButton.() -> Unit): JFXButton

Create a styled JFXButton 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.styledJFXButton(text: String? = null, graphic: Node? = null, vararg styleClass: String, id: String? = null, configuration: JFXButton.() -> Unit): JFXButton

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