TrkItemTypeGroupAttrib.ItemTypeID (read-only property)

property ItemTypeID
Syntax: String = object.ItemTypeID
Description:
Returns the Item type ID of the attribute.

Example 1:

Dim oTrkItemTypeGroup As Object
Dim oTrkItemTypeGroupAttrib As Object
Set oTrkItemTypeGroup = oTrkItemType.TrkItemTypeGroups.Item("Body IDs")
Set oTrkItemTypeGroupAttrib = oTrkItemTypeGroup.TrkItemTypeGroupAttribs.Item(1)
MsgBox "ItemTypeID:" & oTrkItemTypeGroupAttrib.ItemTypeID
...
...
...

Example 2:

Dim oTrkItemTypeGroupAttrib As Object
...
Set oTrkItemTypeGroupAttrib = oTADBRoot.TrkItemTypeGroupAttribs.Item("BODY COMPONENT.Body IDs")
MsgBox "ItemTypeID:" & oTrkItemTypeGroupAttrib.ItemTypeID
...
...
...