styledJfxDecorator
inline fun styledJfxDecorator(stage: Stage, node: Node, fullScreen: Boolean = true, max: Boolean = true, min: Boolean = true, vararg styleClass: String, id: String? = null): JFXDecorator
Create a styled JFXDecorator.
Return
the styled control created.
Parameters
styleClass
the CSS style class.
id
the CSS id.
inline fun NodeContainer.styledJfxDecorator(stage: Stage, node: Node, fullScreen: Boolean = true, max: Boolean = true, min: Boolean = true, vararg styleClass: String, id: String? = null): JFXDecorator
Add a styled JFXDecorator to this container.
Return
the styled control added.
Parameters
styleClass
the CSS style class.
id
the CSS id.
inline fun styledJfxDecorator(stage: Stage, node: Node, fullScreen: Boolean = true, max: Boolean = true, min: Boolean = true, vararg styleClass: String, id: String? = null, configuration: JFXDecorator.() -> Unit): JFXDecorator
Create a styled JFXDecorator 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.styledJfxDecorator(stage: Stage, node: Node, fullScreen: Boolean = true, max: Boolean = true, min: Boolean = true, vararg styleClass: String, id: String? = null, configuration: JFXDecorator.() -> Unit): JFXDecorator
Add a styled JFXDecorator 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.