This filter is used to load the documents including manual transactions, imported files, external files, transcriptions, external references.
object.IncludeScanDoc
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISPatientDocumentFilter interface |
bool
Display the number, types and dates of the documents loaded on the basis of the selected filter.
Dim aPatient
Dim aFilter
Dim aDocuments
Set aPatient = Profile.SelectPatient
set aFilter = Profile.CreatePatientDocumentFilter
aFilter.PatientId = aPatient.Id
aFilter.IncludeScanDoc = True
set aDocuments = Profile.LoadPatientDocuments(aFilter)
aMessage = "Documents Count = " & aDocuments.Count
for i = 0 to aDocuments.Count - 1
set aDocument = aDocuments.Items(i)
aMessage = aMessage & vbNewLine
aMessage = aMessage & aDocument.TypeDescription & ", " & aDocument.Date
next
Profile.MsgBox(aMessage)
In Profile Client v8 on User Interface Documents can be found in
.