ITrkItemAgent.AttributeName (property)

property AttributeName
Syntax: String = object.AttributeName
object.AttributeName = String
Description:
The AttributeName property causes items of the given attribute name to be returned.


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

Set oTrkItemAgent = CreateObject("Tracker.TrkItemAgent")
oTrkItemAgent.AttributeName = "COLOR"
oTrkItemAgent.Execute oTrkItems
...
...
...