ClsEngineConfidence

This property sets or returns a confidence level for a classification engine specified by its index in the collection of classification engines.

Syntax

ClsEngineConfidence (lMethodIndex as Long) as Long
Parameter Description
lMethodIndex Zero-based engine index in collection of classification engines.

Sample Code

The following sample code displays a message box with the confidence value for each classification engine.

Dim dblIndividualResult as Double
Dim lEngineIndex as Long
For lEngineIndex = 0 To Project.ClassifySettings.Count
   dblIndividualResult = (pWorkdoc.ClsEngineConfidence(lEngineIndex))
   MsgBox "The classification confidence is " & dblIndividualResult
Next lEngineIndex