Exemplo n.º 1
0
 private void AddCell(TableRowElement row, string tagName, string label)
 {
     Element cell = (TableCellElement)Document.CreateElement(tagName);
     row.AppendChild(cell);
     cell.InnerHTML = label;
 }