ISPatientRecallVisit.ExplanationAsString

Description

The outcomes of the patient's intervention returned as string.

Syntax

object.ExplanationAsString

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

Return Value

string

Example

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   
Note:

In Profile Client v8 on User Interface Outcomes can be found in Clinical > Medical Record > Care Plans > Complete Intervention > Intervention > Outcome field.

Version information

Added in v7.8.0