WebTextArea.AppendText

From Xojo Documentation

Method

WebTextArea.AppendText(text as String)

Supported for all project types and targets.

Appends the passed text to the current Text in the TextArea. Calling AppendText is faster than using the + operator to append text to existing text.

Example

Appends text to the text area:

TextArea1.AppendText(EndOfLine + "This is now the last line.")