Provides access to members that enumerate through IDs.
Members
Name | Description | |
---|---|---|
Next | Retrieves the next id in the enumeration sequence. | |
Reset | Resets the enumeration sequence to the beginning. |
IEnumIDs.Next Method
Retrieves the next id in the enumeration sequence.
Public Function Next ( _
) As Long
public long Next (
);
Remarks
IEnumIDs::Next returns -1 when there are no more IDs in the enumeration.
IEnumIDs.Reset Method
Resets the enumeration sequence to the beginning.
Public Sub Reset ( _
)
public void Reset (
);
Classes that implement IEnumIDs
Classes | Description |
---|---|
EnumIDs | Esri EnumIDs object. |
Remarks
The IEnumIDs interface is used to enumerate a set of objects IDs. It is used, for example, by the ISelectionSet interface to enumerate selected features or rows.
It will return -1 after the last valid ID has been reached.