Esempio n. 1
0
 public SPAN(string ID, out SPAN spanRef, Control[] controls)
     : base("span")
 {
     spanRef = this;
     this.ID = ID;
     Content = controls;
 }
Esempio n. 2
0
 public SPAN(string ID, out SPAN spanRef)
     : base("span")
 {
     spanRef = this;
     this.ID = ID;
 }