TrkItemTypeGroupAttrib.ItemTypeGroupName (read-only property)

property ItemTypeGroupName
Syntax: String = object.ItemTypeGroupName
Description:
Returns the group name of the attribute.

Example 1:

Dim oTrkItemTypeGroup As Object
Dim oTrkItemTypeGroupAttrib As Object
Set oTrkItemTypeGroup = oTrkItemType.TrkItemTypeGroups.Item("Body IDs")
Set oTrkItemTypeGroupAttrib = oTrkItemTypeGroup.TrkItemTypeGroupAttribs.Item(1)
MsgBox "ItemTypeGroupName:" & oTrkItemTypeGroupAttrib.ItemTypeGroupName
...
...
...

Example 2:

Dim oTrkItemTypeGroupAttrib As Object
...
Set oTrkItemTypeGroupAttrib = oTADBRoot.TrkItemTypeGroupAttribs.Item("BODY COMPONENT","Body IDs")
MsgBox "ItemTypeGroupName:" & oTrkItemTypeGroupAttrib.ItemTypeGroupName
...
...
...