styledTextArea
inline 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.
inline fun NodeContainer.styledTextArea(text: String = "", vararg styleClass: String, id: String? = null): TextArea
Add a styled TextArea to this container.
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 NodeContainer.styledTextArea(text: String = "", vararg styleClass: String, id: String? = null, configuration: TextArea.() -> Unit): TextArea
Add a styled TextArea 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.