TrkItemTypeGroup.TrkTable (read-only property)

property TrkTable
Syntax: TrkTable = object.TrkTable
Description:
Returns the Tracker table for the current Item type group, which contains values of all the attributes.

Example:

Dim oTrkItemTypeGroup As Object
Dim oTrkTable As Object
...
Set oTrkItemTypeGroup = oTADBRoot.TrkItemTypeGroups.Item("Body IDs")
MsgBox "Table name for this group:" & oTrkItemTypeGroup.TrkTable.Name
...
...
...