Class
ReportCollection

Represents a collection of Report objects.

Definition

Namespace:Telerik.Reporting

Assembly:Telerik.Reporting.dll

Syntax:

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

Inheritance: objectCollection<Report>ReportCollection

Constructors

ReportCollection(ReportSourceCollection)

TODO: Add documentation.

Declaration

cs-api-definition
public ReportCollection(ReportSourceCollection reportSources)

Parameters

reportSources

ReportSourceCollection

Methods

AddRange(IEnumerable<Report>)

Adds an array of report objects to the collection.

Declaration

cs-api-definition
public void AddRange(IEnumerable<Report> items)

Parameters

items

IEnumerable<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.

ClearItems()

TODO: Add documentation.

Declaration

cs-api-definition
protected override void ClearItems()

Overrides Collection<Report>.ClearItems()

InsertItem(int, Report)

TODO: Add documentation.

Declaration

cs-api-definition
protected override void InsertItem(int index, Report item)

Parameters

index

int

item

Report

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

RemoveItem(int)

TODO: Add documentation.

Declaration

cs-api-definition
protected override void RemoveItem(int index)

Parameters

index

int

Overrides Collection<Report>.RemoveItem(int)

SetItem(int, Report)

TODO: Add documentation.

Declaration

cs-api-definition
protected override void SetItem(int index, Report item)

Parameters

index

int

item

Report

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