public void RegisterStringProperty(string name, string currentvalue, int Length, SetStringPropertyHandler handler)
 {
     LogFile.WriteLine("RegisterStringProperty " + name);
     PropertyInfos.Add(new StringPropertyInfo(name, currentvalue, Length, handler));
 }
Example #2
0
 public StringPropertyInfo(string name, string currentvalue, int length, SetStringPropertyHandler handler)
 {
     this.Name = name; this.Length = length; this.Handler = handler; InitialValue = currentvalue;
 }
 public StringPropertyInfo( string name, string currentvalue, int length, SetStringPropertyHandler handler )
 {
     this.Name = name; this.Length = length; this.Handler = handler; InitialValue = currentvalue;
 }
 public void RegisterStringProperty(string name, string currentvalue, int Length, SetStringPropertyHandler handler)
 {
     LogFile.WriteLine("RegisterStringProperty " + name);
     PropertyInfos.Add(new StringPropertyInfo(name, currentvalue, Length, handler));
 }