Access MICRFieldResult
The MICR field result represents a field within a text line. It provides methods and properties for accessing information about the MICR field. They are tabulated below:
| Method | Description |
| MICRFieldResultSelectCharacter | Selects a specific character result within the MICR Field Result. |
| Property | Description |
| MICRFieldResultAreaHeight | Gets the coordinate which represents the height of the area on the image for the MICR field result. This property works with the MICRFieldResultAreaWidth, MICRFieldResultAreaX and MICRFieldResultAreaY to create the rectangular area on the image which the recognition engine uses to analyze and produce the MICR field result. |
| MICRFieldResultAreaWidth | Gets the coordinate which represents the width of the area on the image for the MICR field result. This property works with the MICRFieldResultAreaHeight, MICRFieldResultAreaX and MICRFieldResultAreaY to create the rectangular area on the image which the recognition engine uses to analyze and produce the MICR field result. |
| MICRFieldResultAreaX | Gets the coordinate which represents the x (horizontal) position on the image for the MICR field result. This property works with the MICRFieldResultAreaWidth, MICRFieldResultAreaHeight and MICRFieldResultAreaY to create the rectangular area on the image which the recognition engine uses to analyze and produce the MICR field result. |
| MICRFieldResultAreaY | Gets the coordinate which represents the y (vertical) position on the image for the MICR field result. This property works with the TextLineResultAreaWidth, TextLineResultAreaX and TextLineResultAreaHeight to create the rectangular area on the image which the recognition engine uses to analyze and produce the MICR field result. |
| MICRFieldResultConfidence | Gets the confidence value for the MICR field result. |
| MICRFieldResultNumberCharacters | Gets the number of characters in the MICR field result. |
| MICRFieldResultText | Gets the string that comprises the MICR field. |
| VB Example | Copy Code |
|---|---|
|
... 'select a field type that has been parsed myMICRXpressObject.TextLineResultSelectMICRField fieldType 'access field attributes myString = myMICRXpressObject.MICRFieldResultText myConfidence = myMICRXpressObject.MICRFieldResultConfidence myXCoordinate = myMICRXpressObject.MICRFieldResultAreaX myYCoordinate = myMICRXpressObject.MICRFieldResultAreaY myWidth = myMICRXpressObject.MICRFieldResultAreaWidth myHeight = myMICRXpressObject.MICRFieldResultAreaHeight numCharacters = myMICRXpressObject.MICRFieldResultNumberCharacters myMICRXpressObject.MICRFieldResultSelectCharacter 0 ... | |
