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