In .Net SDKs it is possible to get OCR resulting text from given region(s). You can use the below syntax In order to extract text from a region/element in your page:
String ocrText = eyes.InRegion(region).GetText();
It is possible to chain few regions from the same screen together by calling ‘and(...)’ after InRegion:
String ocrText = eyes.InRegion(region1).And(region2).GetText();
region/region1/region2 - Region selectors to take text from. Each region must contain english uniform text. Region selector can be one of the types ‘System.Drawing.Rectangle’ (All SDKs) or ‘OpenQA.Selenium.By’ (Selenium-eyes SDK).Note, When chaining few regions together as shown above, the OCR analysis will run in parallel so its usually should be faster than running every region individually.
ocrText - The resulting text from OCR analysis.