Свойство ReportParameterCollection.Item (String)
Gets the ReportParameter that has the specified name from the collection.
Пространство имен: Microsoft.AnalysisServices
Сборка: Microsoft.AnalysisServices (в Microsoft.AnalysisServices.dll)
Синтаксис
'Декларация
Public ReadOnly Default Property Item ( _
name As String _
) As ReportParameter
Get
'Применение
Dim instance As ReportParameterCollection
Dim name As String
Dim value As ReportParameter
value = instance(name)
public ReportParameter this[
string name
] { get; }
public:
property ReportParameter^ default[String^ name] {
ReportParameter^ get (String^ name);
}
member Item : ReportParameter
JScript поддерживает использование индексированных свойств, но не объявление новых.
Параметры
- name
Тип: System.String
The name of the ReportParameter to return.
Значение свойства
Тип: Microsoft.AnalysisServices.ReportParameter
The ReportParameter specified by name.
Исключения
Исключение | Условие |
---|---|
ArgumentNullException | name is a null reference (Nothing in Visual Basic). |
ItemNotFoundException | name does not exist in the collection. |