Provides access to members that create of an enumeration 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 | |
---|---|---|
Add | Adds a Name in the list. | |
Remove | Removes a Name from the list. | |
RemoveCurrent | Removes current name from the list (when enumerating). |
IEnumNameEdit.Add Method
Adds a Name in the list.
Public Sub Add ( _
    ByVal Name As IName _
)
public void Add (
    IName Name
);
Description
Adds the specified Name object to the enumerator.
IEnumNameEdit.Remove Method
Removes a Name from the list.
Public Sub Remove ( _
    ByVal Name As IName _
)
public void Remove (
    IName Name
);
Description
Removes the specified Name object from the enumerator.
IEnumNameEdit.RemoveCurrent Method
Removes current name from the list (when enumerating).
Public Sub RemoveCurrent ( _
)
public void RemoveCurrent (
);
Description
Removes the current Name object from the enumerator.
Classes that implement IEnumNameEdit
Classes | Description |
---|---|
NamesEnumerator (esriGeoDatabase) | Esri Name Enumerator object. |