ReportParameterCollection.Item[] Property

Definition

Overloads

Item[String]

Gets the ReportParameter element with the specified name.

Item[Int32]

Gets the ReportParameter element at the specified index.

Item[String]

Gets the ReportParameter element with the specified name.

public Microsoft.AnalysisServices.ReportParameter this[string name] { get; }
member this.Item(string) : Microsoft.AnalysisServices.ReportParameter
Default Public ReadOnly Property Item(name As String) As ReportParameter

Parameters

name
String

The name of the element to get.

Property Value

The ReportParameter element with the specified name.

Exceptions

An element with the specified name does not exists in the collection.

Applies to

Item[Int32]

Gets the ReportParameter element at the specified index.

public Microsoft.AnalysisServices.ReportParameter this[int index] { get; }
member this.Item(int) : Microsoft.AnalysisServices.ReportParameter
Default Public ReadOnly Property Item(index As Integer) As ReportParameter

Parameters

index
Int32

The zero-based index of the element to get.

Property Value

The ReportParameter element at the specified index.

Exceptions

The specified index is not a valid.

Applies to