SetMinimumConfidence

Sets the minimum confidence accepted for matched signatures.

Member of namespace

SignatureValidation

Syntax

bool SetMinimumConfidence (string confidence)

Parameters

confidence
A value indicating the minimum confidence accepted for matched signatures. Valid values are in the range of 0-100. Smart parameters supported.

Level

Page and field.

Returns

True, always.
SetSignatureReferenceFolderPath("@X.referenceFolderPath","*+@X.accountId+*")
CreateNew("True", "@X.accountId")
SetMinimumConfidence("70")
ValidateSignature(False)  
This example:
  • sets the signature references directory folder path by using the SetSignatureReferenceFolderPath action, and compares only against the reference files with names that contain the value of a previous captured accountId DCO variable.
  • instructs the signature matching algorithm to create a new reference file if the signature is not matched, and to name it using the value of a previously captured accountId DCO variable.
  • sets the minimum confidence to 70 so that matching signatures with a confidence less than 70 are ignored.
  • runs the signature detection/validation.