AccountCollection.IndexOf Method

Definition

Overloads

IndexOf(Account)

Searches for the specified Account and returns the zero-based index of it in the collection.

IndexOf(String)

Searches for an Account with the specified account type and returns the zero-based index of it in the collection.

IndexOf(Account)

Searches for the specified Account and returns the zero-based index of it in the collection.

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

Parameters

item
Account

The Account to locate in the collection.

Returns

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

Applies to

IndexOf(String)

Searches for an Account with the specified account type and returns the zero-based index of it in the collection.

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

Parameters

accountType
String

The account type of the Account to locate in the collection.

Returns

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

Applies to