TrkItemTypeGroupAttrib.Lookup (property)

property Lookup
Syntax: Boolean = object.Lookup
object.Lookup = Boolean
Description:
Represents the Lookup property of the Item type group attribute. Based on the value of this property, the Schema Generator determines whether to generate a lookup table or not.

Example 1:

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

Example 2:

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