Label.Value
From Xojo Documentation
Property (As String )
aLabel.Value = newStringValue
or
StringValue = aLabel.Value
New in 2019r2
Supported for all project types and targets.
or
StringValue = aLabel.Value
New in 2019r2
Supported for all project types and targets.
The text to display in the Label.
Notes
You can define an accelerator character for a Label. In the Text property, precede the accelerator character with an ampersand. For example, the entry "&Home" signifies that the H is the accelerator. Now, pressing Alt+H on Windows triggers the AcceleratorKey event where you will typically set focus on the related TextField (or other related control).
To specify an "&" in the label text, use two in a row: "&&".
Sample Code
The following example sets the text of the Label.
Me.Value = "Hello World"