ReportParameterCollection.IndexOf Method

Definition

Overloads

IndexOf(ReportParameter)

Searches for the specified ReportParameter and returns its zero-based index within the collection.

IndexOf(String)

Searches for the specified ReportParameter with the specified Name and returns its zero-based index within the collection.

IndexOf(ReportParameter)

Searches for the specified ReportParameter and returns its zero-based index within the collection.

public int IndexOf (Microsoft.AnalysisServices.ReportParameter item);
member this.IndexOf : Microsoft.AnalysisServices.ReportParameter -> int
Public Function IndexOf (item As ReportParameter) As Integer

Parameters

item
ReportParameter

The ReportParameter to locate.

Returns

The zero-based index of the ReportParameter in the collection, if found; otherwise, -1.

Applies to

IndexOf(String)

Searches for the specified ReportParameter with the specified Name and returns its zero-based index within the collection.

public int IndexOf (string name);
member this.IndexOf : string -> int
Public Function IndexOf (name As String) As Integer

Parameters

name
String

The Name of the ReportParameter to locate.

Returns

The zero-based index of the ReportParameter in the collection, if found; otherwise, -1.

Applies to