MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / ReportItemCollection Class / AddRange Method
A collection of the ReportItem objects to add.
Example

In This Topic
AddRange Method (ReportItemCollection)
In This Topic
Adds a collection of ReportItem objects to the existing ReportItemCollection.
Syntax
'Declaration
 
Public Sub AddRange( _
   ByVal collection As IEnumerable(Of ReportItem) _
) 
 

Parameters

collection
A collection of the ReportItem objects to add.
Example
ReportItemCollection collection1 = new ReportItemCollection();
ReportItemCollection collection2 = new ReportItemCollection();
collection2.Add(new TextBox());
collection1.AddRange(collection2);
See Also