Priority of the selected intervention.
object.Priority
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISPatientRecallVisit interface |
Display the priority of the selected 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
info = info & vbNewLine & "The intervention is '" & aVisit.Description & "'"
if aVisit.Priority is nothing then
info = info & vbNewLine & "Priority is unknown"
else
info = info & vbNewLine & "Priority is " & aVisit.Priority.Description
end if
next
GetVisitCollectionInfo = info & vbNewLine
end function
In Profile Client v8 on User Interface Priority can be found in
.