This filter property is used to load the completed actions only (the actions with statuses "Complete", "Declined" and "Excluded").
object.CompleteOnly
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISRecallActionFilter interface |
bool
Display the number of the completed actions (the actions with statuses "Complete", "Declined" and "Excluded").
sub main
Dim aFilter
Dim aActions
Dim aMessage
Set aFilter = Profile.CreateRecallActionFilter
aFilter.CompleteOnly = true
set aActions = Profile.LoadRecallActions(aFilter)
aMessage = aMessage & vbNewLine & "The number of the completed actions is " &_
aActions.Count
Profile.MsgBox(aMessage)
end sub
In Profile Client v8 on User Interface Complete Only cannot be found.