Class ReportCollection
Represents a collection of Report objects.
Namespace: Telerik.Reporting
Assembly: Telerik.Reporting.dll
Syntax
[Obsolete("ReportCollection is now obsolete. Please use ReportSourceCollection.")]
public class ReportCollection : Collection<Report>, IList<Report>, ICollection<Report>, IList, ICollection, IReadOnlyList<Report>, IReadOnlyCollection<Report>, IEnumerable<Report>, IEnumerable
Constructors
ReportCollection(ReportSourceCollection)
Declaration
public ReportCollection(ReportSourceCollection reportSources)
Parameters
ReportSourceCollection
reportSources
|
Methods
AddRange(IEnumerable<Report>)
Adds an array of report objects to the collection.
Declaration
public void AddRange(IEnumerable<Report> items)
Parameters
System.Collections.Generic.IEnumerable<Report>
items
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()
Declaration
protected override void ClearItems()
Overrides
System.Collections.ObjectModel.Collection<Telerik.Reporting.Report>.ClearItems()
InsertItem(Int32, Report)
Declaration
protected override void InsertItem(int index, Report item)
Parameters
System.Int32
index
|
Report
item
|
Overrides
System.Collections.ObjectModel.Collection<Telerik.Reporting.Report>.InsertItem(System.Int32, Telerik.Reporting.Report)
RemoveItem(Int32)
Declaration
protected override void RemoveItem(int index)
Parameters
System.Int32
index
|
Overrides
System.Collections.ObjectModel.Collection<Telerik.Reporting.Report>.RemoveItem(System.Int32)
SetItem(Int32, Report)
Declaration
protected override void SetItem(int index, Report item)
Parameters
System.Int32
index
|
Report
item
|
Overrides
System.Collections.ObjectModel.Collection<Telerik.Reporting.Report>.SetItem(System.Int32, Telerik.Reporting.Report)