Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Text

string System.ComponentModel.Design.DesignerVerb.Text
get

Definition at line 24 of file DesignerVerb.cs.

25 {
26 get
27 {
28 object obj = Properties["Text"];
29 if (obj == null)
30 {
31 return string.Empty;
32 }
33 return (string)obj;
34 }
35 }