ITrkAttribute.LastModDate (read-only property)

property LastModDate
Syntax: DATE*pVal = object.LastModDate
Description:
The LastModDate property shows the date when the attribute was last updated.


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