ITrkItems.Item (read-only property)

property Item
Syntax: VARIANT*pVal = object.Item ( index )
Parameters:
index As VARIANT -

Index within the collection to view. Index starts at 1.
Description:
The Item property will return an item object from the collection.


Example:

Dim oTrkItemAgent As Object
Dim oTrkItems As Object
Dim oTrkItem As Object

Set oTrkItemAgent = CreateObject("Tracker.TrkItemAgent")
oTrkItemAgent.Execute oTrkItems
Set oTrkItem = oTrkItems.Item(1)