ITrkAttribute.Value (property)

property Value
Syntax: VARIANT*pVal = object.Value
object.Value = VARIANT*pVal
Description:
The Value property can be changed to change the attribute value.


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