Returns the number of items in this collection. If this collection's Subset 
 has been implemented then this function returns the number of records within the 
 subset, not the entire table.
 Also utilises the table joins so that any filters specified on the subset
 can be used.
 
        
        Namespace: DatabaseObjectsAssembly: DatabaseObjects (in DatabaseObjects.dll) Version: 3.8.1.0
Syntax
| C# | 
|---|
protected int ObjectsCount()  | 
| Visual Basic | 
|---|
Protected Function ObjectsCount As Integer  | 
| Visual C++ | 
|---|
protected:
int ObjectsCount()  | 
Return Value
Int32	(System.Int32)
Examples
CopyC#
'Return the number of items in this collection.
Public ReadOnly Property Count() As Integer
    Get
        Return MyBase.ObjectsCount
    End Get
End Property
See Also