ITrkAttribute.ItemID (property)

property ItemID
Syntax: String = object.ItemID
object.ItemID = String
Description:
The ItemID Property is the Item ID that has the attribute.


Example:
Dim oTrkAttribAgent As Object
Dim oTrkAttributes As Object
Dim oTrkAttribute As Object
Set oTrkAttribAgent = CreateObject("Tracker.TrkAttributeAgent")
oTrkAttribAgent.Execute oTrkAttributes
Set oTrkAttribute = oTrkAttributes.Item(1)
MsgBox oTrkAttribute.ItemID
...