TextLabel.text
public string text { get; set; }Description#
Get/Set control text. If localize is selected text will automatically be localized.
Usage#
Example
using NullSave.GDTKusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(TextLabel target) { string result = target.text; } }