Esempio n. 1
0
 public CustomCellAddInfo(CustomCellType type, int min, int max)
 {
     this.Type      = type;
     this.MinVal    = min;
     this.MaxVal    = max;
     this.MaxLength = 0;
     this.ItemList  = null;
 }
Esempio n. 2
0
 public CustomCellAddInfo(CustomCellType type, StringCollection il)
 {
     this.Type      = type;
     this.MaxVal    = 0;
     this.MinVal    = 0;
     this.MaxLength = 0;
     this.ItemList  = il;
 }
Esempio n. 3
0
 public CustomCellAddInfo(CustomCellType type, int length, char[] allowedchars)
 {
     this.Type         = type;
     this.MaxLength    = length;
     this.allowedChars = allowedchars;
     this.MaxVal       = 0;
     this.MinVal       = 0;
     this.ItemList     = null;
 }