OcrPageLocationEventArgsRegionsOut Property |
This property represents a collection of
OcrRegion objects that will be used for text or
element recognition.
Namespace:
Atalasoft.Ocr
Assembly:
Atalasoft.dotImage.Ocr (in Atalasoft.dotImage.Ocr.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax public OcrRegionCollection RegionsOut { get; set; }
Public Property RegionsOut As OcrRegionCollection
Get
Set
Property Value
Type:
OcrRegionCollectionRemarks This property will initially be null. If set to null, this instructs the engine to use region objects
that it discovered with no changes. If this property is set to a non-null value, the contents of this collection
will be used instead of those in
RegionsIn. This allows a client to
change, filter, or augment what has been discovered by an
OcrEngine. Putting an OcrRegion into
RegionsOut that the engine doesn't recognize will do nothing. In other words, you shouldn't ask an engine to
recognize form elements if it doesn't have that capability.
See Also