jfxDecorator

fun NodeManager.jfxDecorator(stage: Stage, node: Node, fullScreen: Boolean = true, max: Boolean = true, min: Boolean = true): JFXDecorator

Add a JFXDecorator to this manager.

Return

the control added.


inline fun jfxDecorator(stage: Stage, node: Node, fullScreen: Boolean = true, max: Boolean = true, min: Boolean = true, configuration: JFXDecorator.() -> Unit): JFXDecorator

Create a JFXDecorator with configuration block.

Return

the control created.

Parameters

configuration

the configuration block.


inline fun NodeManager.jfxDecorator(stage: Stage, node: Node, fullScreen: Boolean = true, max: Boolean = true, min: Boolean = true, configuration: JFXDecorator.() -> Unit): JFXDecorator

Add a JFXDecorator with configuration block to this manager.

Return

the control added.

Parameters

configuration

the configuration block.