SetSignatureStyle

Allows configuration of the signature verification mode. Optionally, this action is used to set the signature style.

Syntax

bool SetSignatureStyle (string style)

Parameters

string style

Parameters

style : A value that identifies the signature style to identify. "US" or "Europe" are the valid values.

Smart parameters are supported.

Returns

True always.

This action does not validate the directory path

Level

Page and field level.

Details

Allows configuration of the signature verification mode US (all longer signatures, for example, first + last names written) or Europe (shorter signatures, for example, some graphic element that does not mean a word).

If this action is not called prior to verification the value is default to "US".

The specification of US vs Europe is not a strict requirement, but simply a generalization of the style types of signatures in each region. It is possible that a signature from a US signer may verify better using the Europe setting. Likewise, a European signer may have a signature that verifies better using a US style.

Both settings can be tested to see which works better for a specific signer.

This setting has no effect when validating a signature on a full page US check.
Example :
SetSignatureStyle("Europe") 
SetSignatureReferenceFolderPath("@X.referenceFolderPath","*+@X.accountId+*") 
CreateNew("True", "@X.accountId") 
SetMinimumConfidence("65") 
ValidateSignature(False)

This example configures the signature style to "Europe".

Sets the signature references directory folder path via the SetSignatureReferenceFolderPath action, and tells it to compare only against the reference files whose name contain the value of a previously set 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 set "accountId" DCO variable.

- Sets the minimum confidence to 65 so that matching signature with a confidence less than 65 are not considered genuine.

Runs the signature detection/validation.