ReportParameterCollection.Item[] 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从集合中获取报表参数。
重载
Item[Int32] |
获取位于集合中索引指示位置处的参数。 在 C# 中,此属性是 ReportParameterCollection 类的索引器。 |
Item[String] |
从集合中获取报表参数。 所检索的参数为集合中与 |
Item[Int32]
获取位于集合中索引指示位置处的参数。 在 C# 中,此属性是 ReportParameterCollection 类的索引器。
public:
property Microsoft::ReportingServices::ReportRendering::ReportParameter ^ default[int] { Microsoft::ReportingServices::ReportRendering::ReportParameter ^ get(int index); };
public Microsoft.ReportingServices.ReportRendering.ReportParameter this[int index] { get; }
member this.Item(int) : Microsoft.ReportingServices.ReportRendering.ReportParameter
Default Public ReadOnly Property Item(index As Integer) As ReportParameter
参数
- index
- Int32
处于第 n 位的参数。
属性值
返回一个 ReportParameter 对象,该对象包含在集合中索引所指示的位置处找到的参数。
注解
在 JScript 中,您可以使用某个类型定义的默认索引属性,但不能显式定义自己的属性。 不过,对某个类指定 expando
属性将自动提供其类型为 Object
且其索引类型为 String
的默认索引属性。
适用于
Item[String]
从集合中获取报表参数。 所检索的参数为集合中与 name
参数中指定的名称匹配的参数。 在 C# 中,此属性是 ReportParameterCollection 类的索引器。
public:
property Microsoft::ReportingServices::ReportRendering::ReportParameter ^ default[System::String ^] { Microsoft::ReportingServices::ReportRendering::ReportParameter ^ get(System::String ^ name); };
public Microsoft.ReportingServices.ReportRendering.ReportParameter this[string name] { get; }
member this.Item(string) : Microsoft.ReportingServices.ReportRendering.ReportParameter
Default Public ReadOnly Property Item(name As String) As ReportParameter
参数
- name
- String
参数的名称。
属性值
返回一个 ReportParameter 对象,该对象包含与 name
参数中指定的名称匹配的参数。
注解
在 JScript 中,您可以使用某个类型定义的默认索引属性,但不能显式定义自己的属性。 不过,对某个类指定 expando
属性将自动提供其类型为 Object
且其索引类型为 String
的默认索引属性。