/// <summary> /// Adds the rows in the RowCollection to the end of this collection. /// </summary> /// <param name="rowCollection">The RowCollection to add.</param> public void AddRange(RowCollection rowCollection) { this.collection.AddRange(rowCollection); }
/// <summary> /// Creates a table in a section. /// </summary> /// <param name="section">Section to add table to.</param> /// <param name="tableDefinition">Definition of the table.</param> public Table(Section section, TableDefinition tableDefinition) { this.section = section; this.tableDefinition = tableDefinition; this.rows = new RowCollection(); }