All clinical measures taken for the patient.
object.Measures
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISPatient interface |
Display the number of all clinical measures taken for the patient, their values and modification date.
Dim aPatient
Dim aMeasures
Dim aMeasure
Dim aMessage
Set aPatient = Profile.SelectPatient
set aMeasures = aPatient.Measures
aMessage = "Measures Count = " & aMeasures.Count
for i = 0 to aMeasures.Count - 1
set aMeasure = aMeasures.Item(i)
aMessage = aMessage & vbNewLine
aMessage = aMessage & aMeasure.GetDTModified & " " & aMeasure.AsString
next
Profile.MsgBox(aMessage)
In Profile Client v8 on User Interface Measures can be found in
.