styledJFXDecorator

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.


fun NodeManager.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 manager.

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 NodeManager.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 manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.

configuration

the configuration block.