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


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

IPlugInWorkspaceHelper.RowCountIsCalculated Property

Indicates if a dataset has to count each row to get the number of rows in the dataset.

[Visual Basic .NET]
Public ReadOnly Property RowCountIsCalculated As Boolean
[C#]
public bool RowCountIsCalculated {get;}
[C++]
HRESULT get_RowCountIsCalculated(
  Boolean* rowCountCalculated
);
[C++]
Parameters
rowCountCalculated [out, retval]

rowCountCalculated is a parameter of type bool*

Product Availability

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

Description

Returns true if the only way to count the number of rows in the dataset is to get a cursor and count. If the data source has a faster method for getting a count of rows in a dataset, this method should return false and the optional interface IPlugInFastRowCount should be implemented on dataset helpers returned by OpenDataset. It is always safe to return true here.

See Also

IPlugInWorkspaceHelper Interface | IPlugInFastRowCount Interface