AltConfidenceString property

The AltConfidenceString property sets or gets the confidence level of characters in the field value.

VBScript restriction: Because extended properties are not supported through the C# .NET Interop interface, you must instead use the set_AltConfidenceString method or the get_AltConfidenceString method method.

Syntax

VBScript
oDCO.AltConfidenceString (nIndex as Long) as String.

Applies to

Field objects only.

Type

Read and write.

Arguments

nIndex
0 specifies the primary value. Where the field contains multiple recognition, voting, or multi-pass data entry values, 1 specifies the first alternative, 2 specifies the second alternative, and so on.

Return value

String that contains the confidence level of each character.

VBScript example

The following example sets the confidence string for the first alternative in the Total field:
objTotalField.AltConfidenceString(1) = "987999"

In the example, the Total field consists of 6 characters, and the confidence level of each character is 9, 8, 7, 9, 9, and 9.