ArcObjects Library Reference (GeoDatabase)  

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(
  VARIANT_BOOL* rowCountCalculated
);
[C++]

Parameters

rowCountCalculated [out, retval]   rowCountCalculated is a parameter of type VARIANT_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