styledInfoOverlay

inline 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.


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

Add a styled InfoOverlay to this container.

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 NodeContainer.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 container.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.

configuration

the configuration block.