![]() |
This document is archived and information here might be outdated. Recommended version. |
ArcObjects Help for .NET developers > ArcObjects namespaces > Editor > ESRI.ArcGIS.Editor > Interfaces > IE > IEnumRow Interface (ArcObjects .NET 10.5 SDK) |
Provides access to members that enumerate rows in sequence.
Description | ||
---|---|---|
![]() |
Count | The number of rows. |
![]() |
Next | Retrieves the next row in the sequence. |
![]() |
Reset | Resets the enumeration sequence to the beginning. |
IEnumFeature enumRow=null;
IFeature feature=enumRow as IFeature;
if (feature != null)
{
Windows.Forms.MessageBox.Show("Row OID in Enum" + feature.OID);
pFeature=enumRow.Next();
}
IRow Interface | IFeature Interface | IFeatureCursor Interface | IObjectInspector Interface