Ejemplo n.º 1
0
 public TableCell AddCell(TableCell cell)
 {
     var row = GetLastRow();
     cell.Row = row;
     row.Cells.Add(cell);
     return cell;
 }
Ejemplo n.º 2
0
 public TableCell AddCell(string text)
 {
     var cell = new TableCell();
     cell.Text = text;
     if (FontSize > 0)
         cell.FontSize = FontSize;
     return AddCell(cell);
 }
Ejemplo n.º 3
0
 public TableCell AddCell()
 {
     var cell = new TableCell();
     return AddCell(cell);
 }