This filter property is used to load the collections of actions that have been modified since the specified date and time.
object.ChangedSince
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISRecallActionFilter interface |
DateTime
Display the number of the actions loaded on the basis of the selected filter and some information about them.
Dim aFilter
Dim aActions, aAction
Dim i
Dim aMessage
Set aFilter = Profile.CreateRecallActionFilter
aFilter.ChangedSince = #07/17/2019#
set aActions = Profile.LoadRecallActions(aFilter)
aMessage = "The number of the actions " &_
"changed since the specified date is " & aActions.Count & vbNewLine
for i = 0 to aActions.Count -1
set aAction = aActions.Item (i)
aMessage = aMessage & vbNewLine & "Action Info:" &_
"Action ID: " & aAction.ID & vbNewLine &_
"Action Code: " & aAction.Code & vbNewLine &_
"Action Description: " & aAction.Description & vbNewLine &_
"Date/Time Modified: " & aAction.DTModified & vbNewLine
next
Profile.MsgBox(aMessage)
In Profile Client v8 on User Interface Changed Since cannot be found.