property Type | |
Syntax: | String =
object.Type object.Type = String |
Description: | Represents the type information of the Tracker Item type group. This value can be "List" or "Normal". "List" group has a list of attributes for a particular item, "Normal" group has a single attribute for a particular item. Example 1: Dim oTrkItemType As Object Dim oTrkItemTypeGroup As Object Set oTrkItemType = oTADBRoot.TrkItemTypes.Item("BODY
COMPONENT") Set oTrkItemTypeGroup =
oTrkItemType.TrkItemTypeGroups.Item("Body IDs") MsgBox "Item Type Group Type:" &
oTrkItemTypeGroup.Type ... ... ... Example 2: Dim oTrkItemTypeGroup As Object ... Set oTrkItemTypeGroup =
oTADBRoot.TrkItemTypeGroups.Item("Body IDs") MsgBox "Item Type Group Type:" &
oTrkItemTypeGroup.Type ... ... ... |