ISPatientRecallVisitVersCollection.Item

Description

Each of the intervention versions within the collection.

Syntax

object.Item(prvIndex)

Part Attribute Type Description
object Required
The object always implements the ISPatientRecallVisitVersCollection interface
prvIndex In, Required
int
The index of the intervention version
Restriction: This property is readonly.

Return Value

ISPatientRecallVisitVers

Example

Display each of the intervention versions in the tree structure of the care plan versions.

Dim aMacroResult
Dim aVisits
Dim aVisit
Dim aResultHTML 

Set aVisits = Interventions

set aMacroResult = Profile.FindVariable("MacroResult")

aResultHTML = _
  "Interventions Count: " & aVisits.Count & "<br>"
  
for i = 0 to aVisits.Count - 1
  set aVisit = aVisits.Item(i)
  aResultHTML = aResultHTML & _
    "<li>" & aVisit.Description & "</li><br>"
next 
  
  
aMacroResult.Value = aResultHTML   
Note:

In Profile Client v8 on User Interface Intervention Versions can be found in Clinical > Medical Record > Care Plans > Text page.

Version information

Added in v7.8.0