Example #1
0
 void setGUIProperty(guiProperty name, string value)
 {
     setGUIProperty(name.ToString(), value);
 }
Example #2
0
 string getGUIProperty(guiProperty name)
 {
     return getGUIProperty(name.ToString());
 }
Example #3
0
 void clearGUIProperty(guiProperty name)
 {
     clearGUIProperty(name.ToString());
 }
Example #4
0
 private void setGUIProperty(guiProperty which, string value)
 {
     setGUIProperty(which.ToString(), value);
 }
Example #5
0
 private string getGUIProperty(guiProperty which)
 {
     return getGUIProperty(which.ToString());
 }
Example #6
0
 private void clearGUIProperty(guiProperty which)
 {
     setGUIProperty(which, string.Empty);
 }