styledJFXTextArea

fun styledJFXTextArea(text: String? = null, vararg styleClass: String, id: String? = null): JFXTextArea

Create a styled JFXTextArea.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun NodeManager.styledJFXTextArea(text: String? = null, vararg styleClass: String, id: String? = null): JFXTextArea

Add a styled JFXTextArea to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun styledJFXTextArea(text: String? = null, vararg styleClass: String, id: String? = null, configuration: JFXTextArea.() -> Unit): JFXTextArea

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

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