public void InsertMasterFormPage(
int masterFormPageNumber,
FormRecognitionAttributes attributes,
RasterImage page,
PageRecognitionOptions pageOptions,
PageProgressCallback callback
)
masterFormPageNumber
The One-Based index at which page should be inserted.
attributes
The Master Form attributes object.
page
The page image that is going to be added to Master Form attributes object.
pageOptions
Specifies the page options.
callback
Optional callback to show operation progress.
The attributes object should be a Master Form attributes object, this method does not work for Forms attributes object. To add a page to a Form attributes object use AddFormPage(FormRecognitionAttributes,RasterImage,PageRecognitionOptions).
If masterFormPageNumber is equal to -1 the page will be appended to the form pages.
If masterFormPageNumber is greater than the number of form pages an exception is thrown.
This example adds a page to the master form
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;
/// This method inserts a page to a Master Form recognition attributes object at the specified index.
public void InsertMasterPage(FormRecognitionEngine recognitionEngine,
RasterImage image,
int index,
FormRecognitionAttributes attributes)
{
recognitionEngine.OpenMasterForm(attributes);
recognitionEngine.InsertMasterFormPage(index, attributes, image, null, null);
recognitionEngine.CloseMasterForm(attributes);
}