ArcObjects Library Reference (Controls)  

IEngineEnumRow Interface

Provides access to members that enumerate rows in sequence.

Product Availability

Available with ArcGIS Engine.

Description

This interface is new at ArcGIS 9.3.

Use the IEngineEnumRow enumeration object when you need to maintain a collection of IRow objects in engine. The collection itself can consist of any object that implements the IRow interface. For example, the Feature coclass implements the IRow interface so you can use the IEngineEnumRow object to maintain a collection of features.

The enumeration provides methods to cycle through it:

Use the Count method to identify how many objects exist within the collection.

Use the Next method to retrieve the next object in the enumeration.

Use the Reset method to reset the enumeration to the first object in the collection.


Members

Description
Read-only property Count The number of rows.
Method Next Retrieves the next row in the sequence.
Method Reset Resets the enumeration sequence to the beginning.