ISRecallActionFilter.CompleteOnly

Description

This filter property is used to load the completed actions only (the actions with statuses "Complete", "Declined" and "Excluded").

Syntax

object.CompleteOnly

Part Attribute Type Description
object Required
The object always implements the ISRecallActionFilter interface

Return Value

bool

Example

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   
Note:

In Profile Client v8 on User Interface Complete Only cannot be found.

Version information

Added in v7.8.0