public void DeleteMasterFormPage(
FormRecognitionAttributes attributes,
int pageNumber
)
attributes
The Master Form attribute object.
pageNumber
The page of the Master Form being deleted. The page number is a 1-based index.
The object should be a Master Form attribute object. To delete a page from a Form attribute object, call the DeleteFormPage method.
This example deletes a page from 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 deletes a page from a Master Form recognition attributes.
public void DeletePageFromMasterForm(FormRecognitionEngine recognitionEngine,
int pagenumber,
FormRecognitionAttributes form)
{
recognitionEngine.OpenMasterForm(form);
recognitionEngine.DeleteMasterFormPage(form, pagenumber);
recognitionEngine.CloseMasterForm(form);
}