public ShowHideTableBody(Row headRow, CellBase containerContent) : base()
 {
     headRow.Parent          = this;
     containerContent.Parent = this;
     this.headRow            = headRow;
     this.containerContent   = containerContent;
 }
Esempio n. 2
0
 public void Add(CellBase cell)
 {
     cell.Parent = this;
     children.Add(cell);
 }