ISPatientRecallVisit.IsMasterIntervention

Description

Returns True if the patient's intervention is part of a repeating series.

Syntax

object.IsMasterIntervention

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

Return Value

bool

Example

Display IsMasterIntervention for the patient's intervention.

sub main()
   Dim aPatient, aRecallPlans, aMessage
     
   set aPatient = Profile.SelectPatient
   set aRecallPlans = aPatient.RecallPlans
   
   for each aPlan in aRecallPlans
     aMessage = aMessage & GetVisitCollectionInfo(aPlan.Visits)
   next

  Profile.MsgBox(aMessage)
end sub

function GetVisitCollectionInfo(aVisits)
 
  for each aVisit in aVisits
    info = info & vbNewLine & "The patient's intervention '" &_
    aVisit.Description & "' is part of a repeating series = " &_
    aVisit.IsMasterIntervention
    
  next
  GetVisitCollectionInfo = info &  vbNewLine
end function   
Note:

In Profile Client v8 on User Interface Is Master Intervention can be found in Clinical > Medical Record > Care Plans > Complete Intervention > Edit Master Intervention.

Version information

Added in v7.8.0