Label

Introduction

Label provides a way to display a string to the user. Unlike TextBox, Labels cannot be changed by typing on the keyboard.

Code Example: Adding a Label

The following code adds a Label instance to the root:

var label = new Label();
label.AddToRoot();
label.Text = "This is a Gum label";
Label in Gum

Last updated

Was this helpful?