TrkItemType.TrackingType (read-only property)

property TrackingType
Syntax: Integer = object.TrackingType
Description:
Returns the TrackingType property of this Item type.
Possible values are 1: Serialized or 2: Unserialized.

Example:

Dim oTrkItemType As Object
Set oTrkItemType = oTADBRoot.TrkItemTypes.Item("Body Component")
iTrkType = oTrkItemType.TrackingType
If iTrkType = 1 Then
    MsgBox "Tracking Type is Serialized"
Else
    MsgBox "Tracking Type is Unserialized"
End If
...
...
...