Esempio n. 1
0
 internal Row(Table table, IEnumerable <Cell> cells, Int64?rowId = null) : this(table, rowId)
 {
     Cells = new CellCollection(this, cells);
     Cells.ForEach(cell => cell.LinkToRow(this));
 }
Esempio n. 2
0
 public Row(IEnumerable <Cell> cells)
 {
     Cells = new CellCollection(this, cells);
     Cells.ForEach(cell => cell.LinkToRow(this));
 }