ITrkAttribute.Modify (method)

method Modify
Syntax: object.Modify
Description:
The Modify method allows the attributes values to be changed.


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)
oTrkAttribute.Value = "RED"
oTrkAttribute.Modify
...