TrkItemTypeGroupAttrib.Name (read-only property)

property Name
Syntax: String = object.Name
Description:
Returns the name of the Item type group attribute. The Schema Generator uses this property to generate column names of Group Attribute table.

Example 1:

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

Example 2:

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