ITrkItemAgent.ItemType (property)

property ItemType
Syntax: String = object.ItemType
object.ItemType = String
Description:
The ItemType property causes items of the given itemtype to be returned.


Example:
Dim oTrkItemAgent As Object
Dim oTrkItems As Object
Dim oTrkItem As Object

Set oTrkItemAgent = CreateObject("Tracker.TrkItemAgent")
oTrkItemAgent.ItemType = "DOOR_LIMO"
oTrkItemAgent.Execute oTrkItems
...
...
...