This function returns the clinical views available for the patient.
object.LoadClinicalViews()
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISPatient interface |
Display the clinical views available for the patient.
Dim aPatient
Dim aClinicalViews
Dim aClinicalView
Dim aMessage
Set aPatient = Profile.SelectPatient
set aClinicalViews = aPatient.LoadClinicalViews
aMessage = "Clinical Views Count = " & aClinicalViews.Count
for i = 0 to aClinicalViews.Count - 1
set aClinicalView = aClinicalViews.Item(i)
aMessage = aMessage & vbNewLine
aMessage = aMessage & aClinicalView.Caption
next
Profile.MsgBox(aMessage)
In Profile Client v8 on User Interface Clinical Views can be found in
.