[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.PageReportModel.ReportItemCollection.AddRange

AddRange Method

AddRange(IEnumerable<ReportItem>)

Adds a collection of ReportItem objects to the existing ReportItemCollection.

Declaration
public void AddRange(IEnumerable<ReportItem> collection)
Parameters
Type Name Description
IEnumerable<ReportItem> collection

A collection of the ReportItem objects to add.

Examples
ReportItemCollection collection1 = new ReportItemCollection();
ReportItemCollection collection2 = new ReportItemCollection();
collection2.Add(new TextBox());
collection1.AddRange(collection2);