ReportParameterCollection.IndexOf Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.