The outcomes of the patient's intervention returned as string.
object.ExplanationAsString
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISPatientRecallVisit interface |
string
Display the outcomes of the patient's intervention returned as string.
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 aTmp = aVisit.Explanation
info = info & vbNewLine & "The intervention '" & aVisit.Description
info = info & vbNewLine & " Outcome: " & aVisit.ExplanationAsString
next
GetVisitCollectionInfo = info
end function
In Profile Client v8 on User Interface Outcomes can be found in
.