Appends the System.Web.UI.WebControls.TableCell objects from the specified array to the end of the collection.
- cells
- The array containing the System.Web.UI.WebControls.TableCell objects to add to the collection.
Use the TableCellCollection.AddRange(TableCell[]) method to append the System.Web.UI.WebControls.TableCell objects from the specified array to the collection. This method is commonly used when you are constructing a row of a table. To construct a row of a table, first create an array of System.Web.UI.WebControls.TableCell objects to represent the cells of the row. Next, use the TableCellCollection.AddRange(TableCell[]) method, passing the array as an argument, to add the System.Web.UI.WebControls.TableCell objects to the collection.