TableRowCollection.AddRange(TableRow[]) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.