On this pageUILabel.textpublic string text { get; set; }CopyDescription#Gets/Sets the textUsage#Exampleusing NullSave.GDTK;using UnityEngine; public class Example : MonoBehaviour{ public void ExampleMethod(UILabel target) { string result = target.text; } }Copy