ISPatientRecallVisitsSet.Completed

Description

The number of the patient's completed interventions.

Syntax

object.Completed

Part Attribute Type Description
object Required
The object always implements the ISPatientRecallVisitsSet interface
Restriction: This property is readonly.

Return Value

ISPatientRecallVisits

Example

Display the number of the patient's completed interventions.

sub main   
  Dim aPatient
  Dim aRecallVisitsSet
  Dim aCompletedVisits
  Dim aMessage
     
  Set aPatient = Profile.SelectPatient 
  
  set aRecallVisitsSet = aPatient.RecallVisits
  set aCompletedVisits = aRecallVisitsSet.Completed   
  
  aMessage = "The number of the patient's completed interventions is " &_
    aCompletedVisits.Count 
  
  Profile.MsgBox(aMessage)
end sub  
Note:

In Profile Client v8 on User Interface Completed can be found in Clinical > Care Plans or Clinical > Care Plans > Complete Intervention > Intervention Outcome > Status is.

Version information

Added in v7.8.0