DesktopTextControl.Text

From Xojo Documentation

Property (As String )
aDesktopTextControl.Text = newStringValue
or
StringValue = aDesktopTextControl.Text

New in 2021r3

Supported for all project types and targets.

The text displayed.

Notes

Assigning a string to the Text property replaces the entire contents of the control. The font, size, and color are uniform and match the values last set with the FontName, FontSize, and TextColor properties, or if these haven't been used, the settings in the IDE.

Please note that the implementation of the DesktopTextField and DesktopTextArea controls is platform dependent. Do not expect that the text you assign is the same as the text you receive from this property. For example on Mac your text is converted to UTF-8 internally. On Windows all text after a null character (which means chr(0) and not "0") is ignored. End of line characters can change to their platform specific counterpart. Special characters with Asc values below 32 may be ignored or removed.

Sample Code

Clear (remove) any text that is displayed in the TextArea:

TextArea1.Text = ""

This example places the selected text from a DesktopTextArea into a DesktopTextField.

TextArea1.SelectionStart = 0
TextArea1.SelectionLength = 10

TextField1.Text = TextArea1.SelectedText