ISPatientRecallVisitsSet.Due

Description

The number of the patient's due interventions.

Syntax

object.Due

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 due interventions.

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

In Profile Client v8 on User Interface Due can be found in Clinical > Care Plans or Clinical > Care Plans > Open active intervention > Intervention Outcome > Status.

Version information

Added in v7.8.0