Ejemplo n.º 1
0
        public void RowSeparated()
        {
            _row = new TableRow();
            _table.Rows.Add(_row);

            _cell = new TableCell();
            _row.Cells.Add(_cell);
        }
Ejemplo n.º 2
0
        public TableBuilder()
        {
            _table = new Table();

            _row = new TableRow();
            _table.Rows.Add(_row);

            _cell = new TableCell();
            _row.Cells.Add(_cell);
        }
Ejemplo n.º 3
0
 public virtual void VisitTableCell(TableRow cell)
 {
 }
Ejemplo n.º 4
0
 public virtual void VisitTableRow(TableRow row)
 {
 }