TrkItemType.TrkItemTypeGroups (read-only property)

property TrkItemTypeGroups
Syntax: TrkItemTypeGroups = object.TrkItemTypeGroups
Description:
Returns a TrkItemTypeGroups collection object that belongs to this Item type.

Example:

Dim oTrkItemType As Object
Dim oTrkItemTypeGroups As Object
Set oTrkItemType = oTADBRoot.TrkItemTypes.Item("Body Component")
Set oTrkItemTypeGroups = oTrkItemType.TrkItemTypeGroups
...
...
...