Reporting

Represents a collection of ReportItemBase objects.

Namespace: Telerik.Reporting
Assembly: Telerik.Reporting (in Telerik.Reporting.dll)

Syntax

C#
public class ItemCollection : Collection<ReportItemBase>
Visual Basic
Public Class ItemCollection _
	Inherits Collection(Of ReportItemBase)

Remarks

The [!:Telerik.Reporting.ReportItemBase.ItemCollection.Add(Telerik.Reporting.ReportItemBase)], [!:Telerik.Reporting.ReportItemBase.ItemCollection.Remove(Telerik.Reporting.ReportItemBase)], and RemoveAt(Int32) methods enable you to add and remove individual items from the collection. You can also use the AddRange(array<ReportItemBase>[]()[][]) or Clear()()()() methods to add or remove all the items from the collection. You can determine if a ReportItemBase is a member of the collection by passing the item into the [!:Telerik.Reporting.ReportItemBase.ItemCollection.Contains(Telerik.Reporting.ReportItemBase)] method. To get the index value of the location of a ReportItemBase in the collection, pass the item into the [!:Telerik.Reporting.ReportItemBase.ItemCollection.IndexOf(Telerik.Reporting.ReportItemBase)] method. The collection can be copied into an array by calling the [!:Telerik.Reporting.ReportItemBase.ItemCollection.CopyTo(System.Array, int)] method.

Inheritance Hierarchy

System..::..Object
  System.Collections.ObjectModel..::..Collection<(Of <(<'ReportItemBase>)>)>
    Telerik.Reporting..::..ReportItemBase..::..ItemCollection

Version Information

Supported in: 1.0.1

See Also