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)
TODO: Add documentation.
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()
TODO: Add documentation.
Declaration
protected override void ClearItems()
Overrides
InsertItem(Int32, Report)
TODO: Add documentation.
Declaration
protected override void InsertItem(int index, Report item)
Parameters
|
System.Int32
index
|
|
Report
item
|
Overrides
RemoveItem(Int32)
TODO: Add documentation.
Declaration
protected override void RemoveItem(int index)
Parameters
|
System.Int32
index
|
Overrides
SetItem(Int32, Report)
TODO: Add documentation.
Declaration
protected override void SetItem(int index, Report item)
Parameters
|
System.Int32
index
|
|
Report
item
|