ISRecallActionFilter.CompletedBefore

Description

This filter property is used to load the actions that have been completed before the specified date.

Syntax

object.CompletedBefore

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

Return Value

DateTime

Example

Display the number of the actions that have been completed before the specified date.

sub main
  Dim aFilter
  Dim aActions
  Dim aMessage
  
  Set aFilter = Profile.CreateRecallActionFilter

  aFilter.CompletedBefore = #04/09/2019#
  
  set aActions = Profile.LoadRecallActions(aFilter)  
  
  aMessage = aMessage & vbNewLine & "The number of the actions " &_
    "completed before the specified date is " & aActions.Count
    
  Profile.MsgBox(aMessage)  
end sub  
Note:

In Profile Client v8 on User Interface Completed Before cannot be found.

Version information

Added in v7.8.0