styledJfxTextArea

inline fun styledJfxTextArea(text: String = "", 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.


inline fun NodeContainer.styledJfxTextArea(text: String = "", vararg styleClass: String, id: String? = null): JFXTextArea

Add a styled JFXTextArea to this container.

Return

the styled control added.

Parameters

styleClass

the CSS style class.

id

the CSS id.


inline fun styledJfxTextArea(text: String = "", 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 NodeContainer.styledJfxTextArea(text: String = "", vararg styleClass: String, id: String? = null, configuration: JFXTextArea.() -> Unit): JFXTextArea

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