Classification online learning
The ForceClassificationOnlineLearning script property is available and you can access it through using the xDoc and xDocInfo events. This property is not available on the user interface, it is only available through scripting.
Use this scirpt property during any event or module that supports xDoc and xDocInfo. This includes Thin Client Correction, Thin Client Validation, and Thin Client Verification.
This property forces classification online leaning and sets the value of ForceClassifcationOnlineLearning to TRUE.
This property is used as long as classification online leaning is enabled for your project. However, the class-level classification settings are not required. This means that you can use this property to mark documents for collection for some classes, and rely on the class-level settings for other classes.
If the value is of ForceClassificationOnlineLearning is set to FALSE, the property is ignored.
For example:
Private Sub Batch_Open(ByVal pXRootFolder As CASCADELib.CscXFolder)
pXRootFolder.DocInfos.ItemByIndex(0).ForceClassificationOnlineLearning = True
End Sub
Alternatively:
Private Sub Document_Validated(ByVal pXDoc As CASCADELib.CscXDocument)
pXDoc.ForceClassificationOnlineLearning = True
End Sub