styledTextArea

fun styledTextArea(text: String = "", vararg styleClass: String, id: String? = null): TextArea

Create a styled TextArea.

Return

the styled control created.

Parameters

styleClass

the CSS style class.

id

the CSS id.


fun NodeManager.styledTextArea(text: String = "", vararg styleClass: String, id: String? = null): TextArea

Add a styled TextArea to this manager.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun styledTextArea(text: String = "", vararg styleClass: String, id: String? = null, configuration: TextArea.() -> Unit): TextArea

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

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