PageRegion Class
A class containing the information about the pages.
Inheritance
System.Object
PageRegion
Namespace: Syncfusion.OCRProcessor
Assembly: Syncfusion.OCRProcessor.Base.dll
Syntax
public class PageRegion : Object
Constructors
PageRegion()
Declaration
public PageRegion()
Properties
PageIndex
Gets or sets the page index of a PDF document.
Declaration
public int PageIndex { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Int32 | The index of the page |
PageRegions
Gets or sets the region of a PDF document to process OCR.
Declaration
public RectangleF[] PageRegions { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Drawing.RectangleF[] | The collection of bounds to be OCRed |
Text
Gets the text for a specific region.
Declaration
public List<string> Text { get; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.List<System.String> | The OCRed texts for the specific region |