void setGUIProperty(guiProperty name, string value)
 {
     setGUIProperty(name.ToString(), value);
 }
 string getGUIProperty(guiProperty name)
 {
     return getGUIProperty(name.ToString());
 }
Exemple #3
0
 private void setGUIProperty(guiProperty which, string value)
 {
     setGUIProperty(which.ToString(), value);
 }
 void clearGUIProperty(guiProperty name)
 {
     clearGUIProperty(name.ToString());
 }
Exemple #5
0
 private string getGUIProperty(guiProperty which)
 {
     return getGUIProperty(which.ToString());
 }