ISPatientRecallVisit.GetHelpInfo

Description

This function returns information about the patient's intervention in a format that is useful to (and understandable by) the patient.

Syntax

object.GetHelpInfo()

Part Attribute Type Description
object Required
The object always implements the ISPatientRecallVisit interface

Return Value

ISHelpInfo

Returns the information about the patient's intervention.

Example

Display the information about 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 
    info = info & vbNewLine & aVisit.Description
    set aHI = aVisit.GetHelpInfo
    if aHI is nothing then
      info = info & vbNewLine & "No patient info"
    else
      info = info & vbNewLine & Profile.Rtf2Plain(aHI.GetBody)
    end if
  next
  GetVisitCollectionInfo = info
end function   
Note: The source of this information is the Patient Info tab of the service code on which the intervention is based.

In Profile Client v8 on User Interface Help Info can be found in Clinical > Medical Record > Care Plans > Open active object(s) > Patient Info.

Version information

Added in v7.8.0