Exemplo n.º 1
0
 /**
  * add a new Row to the table
  *
  * @param row	the row which should be Added
  */
 public void AddRow(XWPFTableRow row)
 {
     ctTbl.AddNewTr();
     ctTbl.SetTrArray(this.NumberOfRows - 1, row.GetCTRow());
     tableRows.Add(row);
 }
Exemplo n.º 2
0
 /**
  * add a new Row to the table
  *
  * @param row	the row which should be Added
  */
 public void AddRow(XWPFTableRow row)
 {
     ctTbl.AddNewTr();
     ctTbl.SetTrArray(GetNumberOfRows() - 1, row.GetCtRow());
     tableRows.Add(row);
 }