通过


RdlCollection<T> 构造函数

定义

初始化 RdlCollection<T> 类的新实例。

重载

RdlCollection<T>()

初始化 RdlCollection<T> 类的新实例。

RdlCollection<T>(IContainedObject)

初始化 RdlCollection<T> 类的新实例。

RdlCollection<T>(IEnumerable<T>)

初始化 RdlCollection<T> 类的新实例。

RdlCollection<T>()

初始化 RdlCollection<T> 类的新实例。

public:
 RdlCollection();
public RdlCollection ();
Public Sub New ()

适用于

RdlCollection<T>(IContainedObject)

初始化 RdlCollection<T> 类的新实例。

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)

参数

parent
IContainedObject

集合的父级。

适用于

RdlCollection<T>(IEnumerable<T>)

初始化 RdlCollection<T> 类的新实例。

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))

参数

items
IEnumerable<T>

集合中的项。

适用于