public OmrDateField CreateOmrDateField(
RasterImage image,
List<FormField> formFields,
LeadRect bounds,
int formPageNumber
)
Public Function CreateOmrDateField(
ByVal image As RasterImage,
ByVal formFields As List(Of FormField
),
ByVal bounds As LeadRect,
ByVal formPageNumber As Integer) As OmrDateField
public:
OmrDateField^ CreateOmrDateField(
RasterImage^ image,
List<FormField^>^ formFields,
LeadRect^ bounds,
Int32 formPageNumber
)
image
The master form image.
formFields
A FormField list that contains all fields, including the OmrFormField fields within the bounds.
bounds
A Leadtools.LeadRect represents the location of the OmrDateField to be created.
formPageNumber
Master form page number.
A OmrDateField field with automatically filled out field values.
While automatically creating the field, this method assumes One column for Month and two columns for Day while the Year can have two or four columns.
using Leadtools;
using Leadtools.Ocr;
using Leadtools.Forms.Common;
using Leadtools.Forms.Processing;
using Leadtools.Forms.Auto;
using Leadtools.Codecs;
///This example shows how to create a OmrDateField.
public void AddOmrDateField()
{
DiskMasterForm diskMasterForm = GetMasterForm("LeadAnswerSheet_Pattern");
LeadRect bounds = new LeadRect(3160, 1345, 745, 1545);
FormPages formPages = diskMasterForm.ReadFields();
List<FormField> omrFields = GetOmrFields(formPages);
// Automatically create OmrDateField
OmrDateField omrDateField = diskMasterForm.CreateOmrDateField(diskMasterForm.ReadForm(), omrFields, bounds, 1);
// Set field name
omrDateField.Name = "DateOfBirth";
formPages.GetPage(1).Add(omrDateField);
// Write fields to master form
diskMasterForm.WriteFields(formPages);
}
Imports Leadtools
Imports Leadtools.Ocr
Imports Leadtools.Forms.Common
Imports Leadtools.Forms.Processing
Imports Leadtools.Forms.Auto
Imports Leadtools.Codecs
''' This example shows how to create a OmrDateField.
Public Sub AddOmrDateField()
Dim diskMasterForm As DiskMasterForm = GetMasterForm("LeadAnswerSheet_Pattern")
Dim bounds As LeadRect = New LeadRect(3160, 1345, 745, 1545)
Dim formPages As FormPages = diskMasterForm.ReadFields()
Dim omrFields As List(Of FormField) = GetOmrFields(formPages)
' Automatically create OmrDateField
Dim omrDateField As OmrDateField = diskMasterForm.CreateOmrDateField(diskMasterForm.ReadForm(), omrFields, bounds, 1)
' Set field name
omrDateField.Name = "DateOfBirth"
formPages.GetPage(1).Add(omrDateField)
' Write fields to master form
diskMasterForm.WriteFields(formPages)
End Sub
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document