Provides access to members that enumerate over a set of name objects.
Description
IEnumName allows you to browse a set of Name objects. IEnumEdit lets you to make a set of Name objects. Both interfaces are implemented by the NamesEnumerator object, defined in esriGeodatabase.
Members
Name | Description | |
---|---|---|
Next | Obtains the next Name in the list. | |
Reset | Resets the current position to the beginning. |
IEnumName.Next Method
Obtains the next Name in the list.
Public Function Next ( _
) As IName
public IName Next (
);
Description
The Next method returns the next Name in the enumerator.
IEnumName.Reset Method
Resets the current position to the beginning.
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 Name in the enumerator.
Classes that implement IEnumName
Classes | Description |
---|---|
NamesEnumerator (esriGeoDatabase) | Esri Name Enumerator object. |