styledTextFlow

fun styledTextFlow(vararg styleClass: String, id: String? = null): TextFlow

Create a styled TextFlow.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun NodeManager.styledTextFlow(vararg styleClass: String, id: String? = null): TextFlow

Add a styled TextFlow to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun styledTextFlow(vararg styleClass: String, id: String? = null, configuration: KtfxTextFlow.() -> Unit): TextFlow

Create a styled TextFlow 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.styledTextFlow(vararg styleClass: String, id: String? = null, configuration: KtfxTextFlow.() -> Unit): TextFlow

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