RdlCollection<T> Constructors
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.
Initializes a new instance of the RdlCollection<T> class.
Overloads
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. |
RdlCollection<T>()
Initializes a new instance of the RdlCollection<T> class.
public:
RdlCollection();
public RdlCollection ();
Public Sub New ()
Applies to
RdlCollection<T>(IContainedObject)
Initializes a new instance of the RdlCollection<T> class.
public:
RdlCollection(Microsoft::ReportingServices::RdlObjectModel::IContainedObject ^ parent);
public RdlCollection (Microsoft.ReportingServices.RdlObjectModel.IContainedObject parent);
new Microsoft.ReportingServices.RdlObjectModel.RdlCollection<'T> : Microsoft.ReportingServices.RdlObjectModel.IContainedObject -> Microsoft.ReportingServices.RdlObjectModel.RdlCollection<'T>
Public Sub New (parent As IContainedObject)
Parameters
- parent
- IContainedObject
The parent of the collection.
Applies to
RdlCollection<T>(IEnumerable<T>)
Initializes a new instance of the RdlCollection<T> class.
public:
RdlCollection(System::Collections::Generic::IEnumerable<T> ^ items);
public RdlCollection (System.Collections.Generic.IEnumerable<T> items);
new Microsoft.ReportingServices.RdlObjectModel.RdlCollection<'T> : seq<'T> -> Microsoft.ReportingServices.RdlObjectModel.RdlCollection<'T>
Public Sub New (items As IEnumerable(Of T))
Parameters
- items
- IEnumerable<T>
The items in the collection.