IEnumBSTR Interface

Provides access to members that enumerate over a set of strings.

Description

IEnumBSTR provides access to a set of strings (a BSTR is a particular COM representation of a string that is compatible with VB). An empty string is returned by Next when there are no more strings to fetch.

Members

Name Description
Method Next Obtains the next string in the list.
Method Reset Resets the string so the next returned string is the first.

IEnumBSTR.Next Method

Obtains the next string in the list.

Public Function Next ( _
) As String
public string Next (
);

Description

The Next method returns the next string in the enumerator. An empty string is returned by Next when there are no more strings to fetch.

IEnumBSTR.Reset Method

Resets the string so the next returned string is the first.

Public Sub Reset ( _
)
public void Reset (
);

Description

The Reset method resets the enumerator so that the next call to the Next method returns the first string in the enumerator.

Classes that implement IEnumBSTR

Classes Description

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.