ITrkAttribute.Name (property)

property Name
Syntax: String = object.Name
object.Name = String
Description:
The Name Property is the Name of the Attribute.


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.Name
...