ITrkAttributes.Count (read-only property)

property Count
Syntax: Long = object.Count
Description:
The Count property returns the number of attributes found


Example:
Dim oTrkAttribAgent As Object
Dim oTrkAttributes As Object

Set oTrkAttribAgent = CreateObject("Tracker.TrkAttributeAgent")
oTrkAttribAgent.Execute oTrkAttributes
MsgBox oTrkAttributes.Count
...