TrkItemTypeGroupAttribs.Count (method)

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

Example:

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