示例#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));
 }
示例#2
0
 public Row(IEnumerable <Cell> cells)
 {
     Cells = new CellCollection(this, cells);
     Cells.ForEach(cell => cell.LinkToRow(this));
 }