This document is archived and information here might be outdated.  Recommended version.


IPlugInRowCount.RowCount Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IP > IPlugInRowCount Interface > IPlugInRowCount.RowCount Property
ArcGIS Developer Help

IPlugInRowCount.RowCount Property

The number of rows in the indicated dataset.

[Visual Basic .NET]
Public Function get_RowCount ( _
    ByVal Index As Integer _
) As Integer
[C#]
public int get_RowCount (
    int Index
);
[C++]
HRESULT get_RowCount(
  long Index,
  System.Int32* numRows
);
[C++]
Parameters
Index [in]

Index is a parameter of type long numRows [out, retval]
numRows is a parameter of type long*

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Description

Returns the number of rows in the dataset. Should be implemented to be quick (i.e. faster than just getting a cursor of everything and counting).

See Also

IPlugInRowCount Interface