Each of the intervention versions within the collection.
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 |
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
In Profile Client v8 on User Interface Intervention Versions can be found in
.