The RTF text of the patient's history.
object.RichText
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISHistory interface |
string
Display the number of the patient's histories, their types and contents.
Dim aPatient
Dim aHistories, aHistory
Dim aMessage
Dim i
Set aPatient = Profile.SelectPatient
set aHistories = aPatient.Histories
aMessage = "Histories Count = " & aHistories.Count
for i = 0 to aHistories.Count - 1
set aHistory = aPatient.Histories.Item(i)
aMessage = aMessage & vbNewLine & (i+1) & ") " & aHistory.TypeDescription & ": " &_
Profile.Rtf2Plain(aHistory.RichText)
next
Profile.MsgBox(aMessage)
In Profile Client v8 on User Interface Rich Text Format cannot be found, but Obstetric History can be found in
, Social History can be found in , Past History can be found in , Family History can be found in .