TrkItemType.ID (read-only property)

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

Example:

Dim oTrkItemType As Object
...
...
Set oTrkItemType = oTADBRoot.TrkItemTypes.Item("Body Component")
MsgBox "Item Type ID:" & oTrkItemType.ID
...
...