New to Telerik ReportingStart a free 30-day trial

Represents a collection of Report objects.

Definition

Namespace:Telerik.Reporting

Assembly:Telerik.Reporting.dll

Syntax:

C#
[TypeConverter(typeof(ReportCollectionConverter))]
[Obsolete("ReportCollection is now obsolete. Please use ReportSourceCollection.")]
public class ReportCollection : Collection<Report>

Inheritance: objectCollection<Report>ReportCollection

Constructors

TODO: Add documentation.

C#
public ReportCollection(ReportSourceCollection reportSources)
Parameters:reportSourcesReportSourceCollection

Methods

Adds an array of report objects to the collection.

C#
public void AddRange(IEnumerable<Report> items)
Parameters:itemsIEnumerable<Report>

A collection of Report objects to add to the current collection.

Remarks:

The Report objects contained in the items array are appended to the end of the collection.

TODO: Add documentation.

C#
protected override void ClearItems()

Overrides: Collection<Report>.ClearItems()

TODO: Add documentation.

C#
protected override void InsertItem(int index, Report item)
Parameters:indexintitemReport

Overrides: Collection<Report>.InsertItem(int, Report)

TODO: Add documentation.

C#
protected override void RemoveItem(int index)
Parameters:indexint

Overrides: Collection<Report>.RemoveItem(int)

TODO: Add documentation.

C#
protected override void SetItem(int index, Report item)
Parameters:indexintitemReport

Overrides: Collection<Report>.SetItem(int, Report)