Deletes the specified page from the specified Master Form.
public void DeleteMasterFormPage(FormRecognitionAttributes attributes,int pageNumber)
Public Sub DeleteMasterFormPage( _ByVal attributes As Leadtools.Forms.Recognition.FormRecognitionAttributes, _ByVal pageNumber As Integer _)
public:void DeleteMasterFormPage(Leadtools.Forms.Recognition.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.
For a complete example of using form recognition and processing, refer to the FormRecognitionEngine example.
This example deletes a page from the Master Form
using Leadtools;using Leadtools.Barcode;using Leadtools.Codecs;using Leadtools.Forms;using Leadtools.Forms.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);}
Imports LeadtoolsImports Leadtools.BarcodeImports Leadtools.CodecsImports Leadtools.FormsImports Leadtools.Forms.OcrImports Leadtools.Forms.ProcessingImports Leadtools.Forms.RecognitionImports Leadtools.Forms.Recognition.BarcodeImports Leadtools.Forms.Recognition.Ocr''' This method deletes a page from a Master Form recognition attributes.Public Sub DeletePageFromMasterForm(recognitionEngine As FormRecognitionEngine, pagenumber As Integer, form As FormRecognitionAttributes)recognitionEngine.OpenMasterForm(form)recognitionEngine.DeleteMasterFormPage(form, pagenumber)recognitionEngine.CloseMasterForm(form)End Sub
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
