Gets the cell types supported by this OCR engine.
[Leadtools.Forms.Ocr.OcrZoneType[]](ocrzonetype.html) GetSupportedCellTypes()
Function GetSupportedCellTypes() As Leadtools.Forms.Ocr.OcrZoneType()
Leadtools.Forms.Ocr.array<OcrZoneType>^ GetSupportedCellTypes();
An array of OcrZoneType enumeration members that specify the cell types supported by this OCR engine.
Currently, on the LEADTOOLS Professional OCR engine support manipulating the cells of a table zone.
These are the only cell types that may be returned from the engine when table cells are auto-detected or you can manually set into OcrZoneCell.CellType. Setting any other cell type will result in an exception being thrown.
In the future, this restriction might be removed when more cell types are supported, it is recommended that you use GetSupportedCellTypes to programmatically get a list of the supported types and construct and user interface from the values returned from this method (for example, a combo box for cell type selection in your application).
You can use table cells in one of two ways:
Perform auto-zoning on the page using IOcrPage.AutoZone, if the page contains a detected table, the a zone of type OcrZoneType.Table is created for this table. If the engine successfully detects the cells of the table, then it will fill the an internal OcrZoneCell array with the properties of the detected cells.
Manually add a new OcrZone with its type set to OcrZoneType.Table to the zones collection of a page. Leave the value of the cells to null (Nothing in VB), now use the IOcrTableZoneManager.AutoDetectCells method to instruct the engine to detect any cells in this zone and fill the array with the data.
To manipulate a cell properties other than its bound (OcrZoneCell.Bounds), get the array of detected cells through IOcrZoneCollection.GetZoneCells, change the cell background color, style or any border color, style or with. When you are done, re-set the array using IOcrZoneCollection.SetZoneCells.
It is not recommended that you manually remove or add cells to the array, the engine is very sensitive to zone boundaries and any non-accurate information will cause an error. Instead, use the various methods of IOcrTableZoneManager to manipulate the cell location and size.
using Leadtools;
using Leadtools.Codecs;
using Leadtools.Forms;
using Leadtools.Forms.Ocr;
using Leadtools.Drawing;
private static void GetSupportedCellTypesExample(IOcrPage ocrPage)
{
Console.WriteLine("The engine of type {0} supports these zone cell types:", ocrPage.Document.Engine.EngineType);
IOcrTableZoneManager ocrTableZoneManager = ocrPage.TableZoneManager;
if (ocrTableZoneManager != null)
{
OcrZoneType[] cellTypes = ocrTableZoneManager.GetSupportedCellTypes();
foreach (OcrZoneType cellType in cellTypes)
{
Console.WriteLine(cellType.ToString());
}
}
else
{
Console.WriteLine("Cells not supported.");
}
}
Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.Forms
Imports Leadtools.Forms.Ocr
Imports Leadtools.Drawing
Private Sub GetSupportedCellTypesExample(ocrPage As IOcrPage)
Console.WriteLine("The engine of type {0} supports these zone cell types:", ocrPage.Document.Engine.EngineType)
Dim ocrTableZoneManager As IOcrTableZoneManager = ocrPage.TableZoneManager
If ocrTableZoneManager IsNot Nothing Then
Dim cellTypes As OcrZoneType() = ocrTableZoneManager.GetSupportedCellTypes()
For Each cellType As OcrZoneType In cellTypes
Console.WriteLine(cellType.ToString())
Next
Else
Console.WriteLine("Cells not supported.")
End If
End Sub
![]() |
Products |
Support |
Feedback: GetSupportedCellTypes Method - Leadtools.Forms.Ocr |
Introduction |
Help Version 19.0.2017.6.6
|
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
Your email has been sent to support! Someone should be in touch! If your matter is urgent please come back into chat.
Chat Hours:
Monday - Friday, 8:30am to 6pm ET
Thank you for your feedback!
Please fill out the form again to start a new chat.
All agents are currently offline.
Chat Hours:
Monday - Friday
8:30AM - 6PM EST
To contact us please fill out this form and we will contact you via email.