Class OcrResult.Table
Represents a Visual Table with Borders discovered during OCR.
To enable table reading, set IronTesseract's Configuration.ReadDataTables to true.
var Ocr = new IronTesseract();
Ocr.Configuration.ReadDataTables = true;
Inheritance
System.Object
OcrResult.Table
Assembly: IronOcr.dll
Syntax
public class Table : OcrResult.OcrResultTextElement
Properties
DataTable
Declaration
public DataTable DataTable { get; }
Property Value
Type |
Description |
System.Data.DataTable |
|
GetLocation
Declaration
public CropRectangle GetLocation { get; }
Property Value
Type |
Description |
IronSoftware.Drawing.CropRectangle |
|
Height
Declaration
public int Height { get; }
Property Value
Type |
Description |
System.Int32 |
|
Width
Declaration
public int Width { get; }
Property Value
Type |
Description |
System.Int32 |
|
X
Declaration
Property Value
Type |
Description |
System.Int32 |
|
Y
Declaration
Property Value
Type |
Description |
System.Int32 |
|
See Also