This filter property is used to load the diagnoses by the confidence level.
object.ConfidenceID
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISProblemDiagnosisFilter interface |
int
Display the number of the diagnoses loaded on the basis of the selected filter, their codes, descriptions and confidence levels.
Dim aPatient
Dim aFilter
Dim aDiagnoses
Dim aDiagnosis
Dim aMessage
Set aPatient = Profile.SelectPatient
set aFilter = Profile.CreateProblemDiagnosisFilter
aFilter.PatientId = aPatient.ID
aFilter.ConfidenceID = 3 'cDefinitive
set aDiagnoses = Profile.LoadDiagnoses(aFilter)
aMessage = "Diagnoses Count = " & aDiagnoses.Count
for i = 0 to aDiagnoses.Count - 1
set aDiagnosis = aDiagnoses.Item(i)
aMessage = aMessage & vbNewLine & "Code: " & aDiagnosis.DxCode &_
"; Description: " & aDiagnosis.DxDescription & "; Confidence: " &_
aDiagnosis.Confidence
next
Profile.MsgBox(aMessage)
In Profile Client v8 on User Interface Confidence can be found in
, in or in .