Join us for an engaging webinar, as we unravel the potential of AI for revolutionizing document management.
Watch Now
Enable your employees to remain productive throughout the document management process.
Read More
Learn how SmartZone uses a regular expression engine integrated into the recognition engine to achieve the best possible accuracy on data that can be defined by a regular expression.
Docubee is an intelligent contact automation platform built to help your team success
What are the best quality images to use when processing form data and recognition?
In order to add a new FormTableColumnHeaderDefinition to a FormTableDefinition object, first create a list of type FormTableColumnHeaderDefinition. Next, each FormTableColumnHeaderDefinition object is created and defined and added to this list using the Add method. Finally, this list is assigned to the FormTableDefinition’s ColumnHeaderDefinitions property.
// Create a table definition FormTableDefinition tableDefinition = new FormTableDefinition(); tableDefinition.Name = "Line Item Table"; // Setup the columns of the table List<FormTableColumHeaderDefinition> columnHeaderDefinitions = new List<FormTableColumnHeaderDefinition>(); FormTableColumnHeaderDefinition descriptionColumn = new FormTableColumnHeaderDefinition(); descriptionColumn.DataType = FormFieldDataType.GeneralText; descriptionColumn.Name = "Description"; columnHeaderDefinitions.Add(descriptionColumn); FormTableColumnHeaderDefinition amountColumn = new FormTableColumnHeaderDefinition(); amountColumn.DataType = FormFieldDataType.Currency; amountColumn.Name = "Amount"; columnHeaderDefinitions.Add(amountColumn); tableDefinition.ColumnHeaderDefinitions = columnHeaderDefinitions; // Add the table definition to the form definition formDefinition.TableDefinitions.Add(tableDefinition.Name, tableDefinition);