Accusoft.MicrXpress1.Net Accusoft Pegasus
Determine if the Component Successfully Recognized MICR Text in the Image
Send Feedback  
How To > Determine Results > Determine if the Component Successfully Recognized MICR Text in the Image

Glossary Item Box

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
}
...
©2009. Pegasus Imaging Corporation, DBA Accusoft Pegasus. All Rights Reserved.