ITrkItemAgent.AttributeValue (property)

property AttributeValue
Syntax: String = object.AttributeValue
object.AttributeValue = String
Description:
The AttributeValue property causes items of the given attribute value 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.AttributeValue = "BLACK"
oTrkItemAgent.Execute oTrkItems
...
...
...