TrkItemTypes.Count (read-only property)

property Count
Syntax: Long = object.Count
Description:
Returns the total number of TrkItemType objects in this collection. The return value is zero if the collection is empty.

Example:

Dim idx As Long
Dim oTrkItemTypes As Object
....
....
idx = oTrkItemTypes.Count
MsgBox "Total Item Type in collection :" & idx
....
....