Label.Text

From Xojo Documentation

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

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.Text = "Hello World"