ITrkAttributes.Item (read-only property)

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

1 based Index within the collection or the attribute name
or use one of the following strings for a system attribute:
ItemID - Item ID.
ItemType - The Item Type.
Region - The region where the item is located.
Location - The location of the item in the region.
Status - Status word of the item.
ItemClass - The item class.
ExternalHold - 1 if the item is on External hold.
GroupID - Group id if the item is on external hold.
Project - Project id where the item is currently located.
Service - Service id where the item is currently located.
ReferenceID - Reference id.
EntryTime - Entry time of the item in the current region.
Associate - Associated item's ID.
ModTime - Time when item was last modified.
CreateTime - Time when the item was created.
InternalHold - 1 if the item is on internal hold.
IntHoldReason - Reason for the item to be on internal hold.
Description:
The Item property Specifies the item in the collection to retrieve


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)
...