styledInfoOverlay

fun styledInfoOverlay(content: Node? = null, text: String? = null, vararg styleClass: String, id: String? = null): InfoOverlay

Create a styled InfoOverlay.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun NodeManager.styledInfoOverlay(content: Node? = null, text: String? = null, vararg styleClass: String, id: String? = null): InfoOverlay

Add a styled InfoOverlay to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun styledInfoOverlay(content: Node? = null, text: String? = null, vararg styleClass: String, id: String? = null, configuration: KtfxInfoOverlay.() -> Unit): InfoOverlay

Create a styled InfoOverlay 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.styledInfoOverlay(content: Node? = null, text: String? = null, vararg styleClass: String, id: String? = null, configuration: KtfxInfoOverlay.() -> Unit): InfoOverlay

Add a styled InfoOverlay 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.