label

fun NodeManager.label(text: String? = null, graphic: Node? = null): Label

Add a Label to this manager.

Return

the control added.


inline fun label(text: String? = null, graphic: Node? = null, configuration: Label.() -> Unit): Label

Create a Label with configuration block.

Return

the control created.

Parameters

configuration

the configuration block.


inline fun NodeManager.label(text: String? = null, graphic: Node? = null, configuration: Label.() -> Unit): Label

Add a Label with configuration block to this manager.

Return

the control added.

Parameters

configuration

the configuration block.