This documentation is archived and is not being maintained.
TableRowCollection.AddRange Method
.NET Framework 1.1
Appends the TableRow objects from the specified array to the end of the collection.
[Visual Basic] Public Sub AddRange( _ ByVal rows() As TableRow _ ) [C#] public void AddRange( TableRow[] rows ); [C++] public: void AddRange( TableRow* rows[] ); [JScript] public function AddRange( rows : TableRow[] );
Parameters
- rows
- The array containing the TableRow objects to add to the collection.
Exceptions
| Exception Type | Condition |
|---|---|
| ArgumentNullException | The value of the rows parameter is a null reference (Nothing in Visual Basic). |
Remarks
Use the AddRange method to append the TableRow objects from the specified array to the collection. This method is commonly used when you are constructing a table. To construct a table, first create an array of TableRow objects to represent the rows of the table. Next, use the AddRange method, passing the array as an argument, to add the TableRow objects to the collection.
Requirements
Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family
See Also
TableRowCollection Class | TableRowCollection Members | System.Web.UI.WebControls Namespace | Add | AddAt
Show: