ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Core.Data Namespace / Table Class / GetCount Method / GetCount(QueryFilter) Method
Used to filter the count of how many rows are currently in this Table. If set to null, all the number of rows will be returned.

In This Topic
    GetCount(QueryFilter) Method
    In This Topic
    Gets the count of how many rows are currently in this Table that satisfy the criteria set in the queryFilter. This method must be called on the MCT. Use QueuedTask.Run.
    Syntax
    Public Overloads Function GetCount( _
       ByVal queryFilter As QueryFilter _
    ) As Long
    public long GetCount( 
       QueryFilter queryFilter
    )

    Parameters

    queryFilter
    Used to filter the count of how many rows are currently in this Table. If set to null, all the number of rows will be returned.

    Return Value

    The number of rows in this table.
    Exceptions
    ExceptionDescription
    If queryFilter is an instance of SpatialQueryFilter, either both the 'FilterGeometry' and 'SpatialRelationship' properties are set or both are not set. Otherwise, an ArgumentException will be raised.
    A geodatabase-related exception has occurred.
    Requirements

    Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)

    ArcGIS Pro version: 3.0 or higher.
    See Also