TableRowCollection.AddRange(TableRow[]) Method

Definition

Appends the TableRow objects from the specified array to the end of the collection.

public:
 void AddRange(cli::array <System::Web::UI::WebControls::TableRow ^> ^ rows);
public void AddRange (System.Web.UI.WebControls.TableRow[] rows);
member this.AddRange : System.Web.UI.WebControls.TableRow[] -> unit
Public Sub AddRange (rows As TableRow())

Parameters

rows
TableRow[]

The array containing the TableRow objects to add to the collection.

Exceptions

The value of the rows parameter is null.

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.

Applies to

See also