ClsEngineDistance

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

Syntax

ClsEngineDistance (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 for each class, showing the classification engine distance.

Dim dblIndividualResult as Double
Dim lEngineIndex as Long
For lEngineIndex = 0 To Project.ClassifySettings.Count
   dblIndividualResult = (pWorkdoc.ClsEngineDistance(lEngineIndex))
   MsgBox "The engine distance is " & dblIndividualResult
Next lEngineIndex