ISPatientRecallVisit.URL

Description

This is a reference to the patient's intervention.

Syntax

object.URL

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

Return Value

string

Example

Display a reference to the patient's intervention.

sub main()
   Dim aPatient, aRecallPlans, 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 reference to the patient's intervention '" &_
    aVisit.Description & "' is  " & aVisit.URL
    
  next
  GetVisitCollectionInfo = info &  vbNewLine
end function  
Note:

In Profile Client v8 on User Interface URL cannot be found.

Version information

Added in v7.8.0