CustomPropertyCollection.Item[] 属性

定义

从集合中获取自定义属性。

重载

Item[Int32]

获取指定索引处的自定义属性。

Item[String]

返回集合中的已命名自定义属性。

Item[Int32]

获取指定索引处的自定义属性。

public:
 property Microsoft::ReportingServices::ReportRendering::CustomProperty ^ default[int] { Microsoft::ReportingServices::ReportRendering::CustomProperty ^ get(int index); };
public Microsoft.ReportingServices.ReportRendering.CustomProperty this[int index] { get; }
member this.Item(int) : Microsoft.ReportingServices.ReportRendering.CustomProperty
Default Public ReadOnly Property Item(index As Integer) As CustomProperty

参数

index
Int32

要获取的自定义属性的索引。

属性值

CustomProperty 对象。

适用于

Item[String]

返回集合中的已命名自定义属性。

public:
 property Microsoft::ReportingServices::ReportRendering::CustomProperty ^ default[System::String ^] { Microsoft::ReportingServices::ReportRendering::CustomProperty ^ get(System::String ^ name); };
public Microsoft.ReportingServices.ReportRendering.CustomProperty this[string name] { get; }
member this.Item(string) : Microsoft.ReportingServices.ReportRendering.CustomProperty
Default Public ReadOnly Property Item(name As String) As CustomProperty

参数

name
String

自定义属性的名称。

属性值

CustomProperty 对象。

适用于