TrkItemType.Description (property)

property Description
Syntax: String = object.Description
object.Description = String
Description:
Represents Item type description.

Example:

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