ReportParameterCollection.Item 属性 (String)
按名称获取 ReportParameter 集合中的对象。
命名空间: Microsoft.Reporting.WebForms
程序集: Microsoft.ReportViewer.WebForms(在 Microsoft.ReportViewer.WebForms.dll 中)
语法
声明
Public ReadOnly Property Item ( _
name As String _
) As ReportParameter
Get
用法
Dim instance As ReportParameterCollection
Dim name As String
Dim value As ReportParameter
value = instance.Item(name)
public ReportParameter this[
string name
] { get; }
public:
property ReportParameter^ Item[String^ name] {
ReportParameter^ get (String^ name);
}
member Item : ReportParameter
参数
- name
类型:System.String
要获取的 ReportParameter 对象的名称。这是 Name 属性的值。
此参数不区分大小写。
属性值
类型:Microsoft.Reporting.WebForms.ReportParameter
具有指定名称的 ReportParameter(如果找到的话);否则为一个 null 引用(在 Visual Basic 中为 Nothing)。
注释
如果集合中的多个参数与 name 参数匹配,则返回第一个匹配的参数。