ISRecallVisitFilter.SearchPartial

Description

This filter property is used to load the interventions filtered by the status 'Partial'.

Syntax

object.SearchPartial

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

Return Value

bool

Example

Display the number of the interventions filtered by the status 'Partial'.

sub main   
  Dim aFilter
  Dim aVisits
  Dim aMessage
    
  Set aFilter = Profile.CreateRecallVisitFilter
  
  aFilter.SearchPartial = true
   
  set aVisits = Profile.LoadRecallVisits(aFilter)  
   
  aMessage = aMessage & vbNewLine & "The number of the interventions " &_
    "filtered by the status 'Partial' (" & aFilter.SearchPartial &_
    ") is " & aVisits.Count
    
  Profile.MsgBox(aMessage)  
end sub   
Note:

In Profile Client v8 on User Interface Search Partial cannot be found. Intervention Status can be found in Clinical > Care Plans > Open active intervention > Intervention Outcome > Status field.

Version information

Added in v7.8.0