Returns True if the status of the intervention is changed to 'Hold'.
object.Hold
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISPatientRecallVisit interface |
bool
Display Hold for the patient's intervention.
sub main()
Dim aPatient, aRecallVisits, 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
set aPlan = aVisit.ParentPlan
info = info & vbNewLine & "The status 'Hold' for the intervention '" &_
aVisit.Description & "' = " & aVisit.Hold
next
GetVisitCollectionInfo = info
end function
In Profile Client v8 on User Interface the Intervention on hold checkbox can be checked in
.