Fields are defined for each page in the processing engine. All fields require you fill in the Property specifying where the field is located, and a Name Property.
Fields can be added or retrieved through the FormProcessingEngine.Pages property. Once fields are defined, they can be loaded/saved from disk using the FormProcessingEngine.LoadFields and FormProcessingEngine.SaveFields methods, allowing you to define MasterForm fields just once and save them to disk. LEADTOOLS supports TableFormField, OmrFormField, BarcodeFormField, ImageFormField, TableFormField, and custom user-defined fields derived from FormField. When obtaining processing results, you should check for the type of each field, and cast it to the appropriate type in order to obtain the field specific results (barcode, image, etc).
using Leadtools;
using Leadtools.Barcode;
using Leadtools.Codecs;
using Leadtools.Forms.Common;
using Leadtools.Ocr;
using Leadtools.Forms.Processing;
using Leadtools.Forms.Recognition;
using Leadtools.Forms.Recognition.Barcode;
using Leadtools.Forms.Recognition.Ocr;
using Leadtools.Document;
///This example shows how to create a TableFormField.
public void AddTableFormField(FormProcessingEngine processingEngine)
{
//Create a new page for the form.
FormPage formPage = new FormPage(1, 150, 150);
TableFormField tableField = new TableFormField();
//Set Table Rule which tell us that each table row is seperated with
//horizontal line.
tableField.Rules = TableRules.RowsLineSeparator;
//add two columns to new table field
TextFormField column1 = new TextFormField();
column1.Name = "Column1";
column1.Bounds = new LeadRect(0, 0, 100, 50);
tableField.Columns.Add(new TableColumn(column1));
TextFormField column2 = new TextFormField();
column2.Name = "Column2";
column2.Bounds = new LeadRect(150, 0, 100, 50);
tableField.Columns.Add(new TableColumn(column2));
formPage.Add(tableField);
//Add the page to the engine
processingEngine.Pages.Add(formPage);
}