RdlCollection<T> Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents an RDL collection.
generic <typename T>
public ref class RdlCollection : Microsoft::ReportingServices::RdlObjectModel::RdlCollectionBase<T>
public class RdlCollection<T> : Microsoft.ReportingServices.RdlObjectModel.RdlCollectionBase<T>
type RdlCollection<'T> = class
inherit RdlCollectionBase<'T>
Public Class RdlCollection(Of T)
Inherits RdlCollectionBase(Of T)
Type Parameters
- T
The type of the collection.
- Inheritance
- Derived
Constructors
RdlCollection<T>() |
Initializes a new instance of the RdlCollection<T> class. |
RdlCollection<T>(IContainedObject) |
Initializes a new instance of the RdlCollection<T> class. |
RdlCollection<T>(IEnumerable<T>) |
Initializes a new instance of the RdlCollection<T> class. |
Properties
Parent |
Gets or sets the parent object. (Inherited from RdlCollectionBase<T>) |
Methods
ClearItems() |
Removes all the items in the collection. |
InsertItem(Int32, T) |
Inserts an item in the collection. |
OnCollectionChanged(EventArgs) |
Raises the CollectionChanged event. |
RemoveItem(Int32) |
Removes an item from the collection. |
SetItem(Int32, T) |
Replaces an item in the collection. |
Events
CollectionChanged |
Occurs when the collection has been changed. |
Explicit Interface Implementations
IList.Add(Object) |
Adds an object to the end of the collection. (Inherited from RdlCollectionBase<T>) |
IList.Item[Int32] |
Gets or sets the element at the specified index. (Inherited from RdlCollectionBase<T>) |