styledJfxButton
inline 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.
inline fun NodeContainer.styledJfxButton(text: String? = null, graphic: Node? = null, vararg styleClass: String, id: String? = null): JFXButton
Add a styled JFXButton to this container.
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 NodeContainer.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 container.
Return
the styled control added.
Parameters
styleClass
the CSS style class.
id
the CSS id.
configuration
the configuration block.