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