property Class | |
Syntax: | Long = object.Class |
Description: | The Class Property returns the class of the given Attribute. System = 4 Standard = 1 Extended = 0 Example: Dim oTrkAttribAgent As Object Dim oTrkAttributes As Object Dim oTrkAttribute As Object Set oTrkAttribAgent =
CreateObject("Tracker.TrkAttributeAgent") oTrkAttribAgent.Execute oTrkAttributes Set oTrkAttribute = oTrkAttributes.Item(1) MsgBox oTrkAttribute.Class ... |