This document is archived and information here might be outdated. Recommended version. |
ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IP > IPlugInWorkspaceHelper Interface > IPlugInWorkspaceHelper.RowCountIsCalculated Property (ArcObjects .NET 10.5 SDK) |
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(
VARIANT_BOOL* rowCountCalculated
);
[C++]
Parameters rowCountCalculated [out, retval] rowCountCalculated is a parameter of type VARIANT_BOOL
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.
IPlugInWorkspaceHelper Interface | IPlugInFastRowCount Interface