Determine if the Component Successfully Recognized MICR Text in the Image
If the call to the AnalyzeField method was successful in finding a MICR text in the specified zone, then the method will return a TextBlockResult with at least one TextLineResult. If the Reader did not find any MICR text in the specified zone, then the call to AnalyzeField method will return a TextBlockResult without any TextLineResults.
| C# Example | Copy Code |
|---|---|
|
... TextBlockResult textBlockResult; textBlockResult = myMicrXpress.Reader.AnalyzeField(myHDib); if (null != textBlockResult) { // process the results object } ... | |
