IEnumNamedID Interface

Provides access to members that enumerate over a set of named IDs.

Description

IEnumNamedID, which is used by the Paper object of esriOutput, provides browsing over a set of ID-name pairs. The ID is a long integer returned by the Next method. The name is a string returned as an ouput parameter of Next. When there are no more pairs to fetch, Next returns an empty name string.

Members

Name Description
Method Next Obtains the next name-ID pair in the set.
Method Reset Resets internal cursor so that the next call to Next returns the first pair in the set.

IEnumNamedID.Next Method

Obtains the next name-ID pair in the set.

Public Function Next ( _
    ByRef nextName As String _
) As Integer
public int Next (
    ref string nextName
);

Description

The Next method returns the next ID and name pair in the enumerator. When there are no more pairs to fetch, Next returns an empty name string.

IEnumNamedID.Reset Method

Resets internal cursor so that the next call to Next returns the first pair in the set.

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 ID and name pair in the enumerator.

Classes that implement IEnumNamedID

Classes Description

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