Access Alternate Character Results
Use the CharacterResultNumberResults property to determine how many results are available for this CharacterResult. The first result is considered to be the primary result, and other results are alternates. The value of CharacterResultNumberResults is equal to the count of alternative results plus one primary result.
The primary result is the result for which MICR Xpress has the highest confidence; alternate results are sorted with descending confidence. Use the CharacterResultText and CharacterResultConfidence methods to access the primary and alternate results.
A value of 0 for the index argument to these methods will give the primary result text/confidence and a value greater than 0 for the index will give alternate results’ text/confidence.
| VB Example | Copy Code |
|---|---|
|
IF (myMICRXpressObject.CharacterResultNumResults > 1) Then myAlternateString = myMICRXpressObject.CharacterResultText(1) myAlternateConfidence = myMICRXpressObject.CharacterResultConfidence(1) End If | |
