←Select platform

DeleteFormPage Method

Summary
Deletes the specified page from the specified Form attribute object.

Syntax
C#
C++/CLI
Java
Python
public void DeleteFormPage( 
   FormRecognitionAttributes attributes, 
   int pageNumber 
) 
public void deleteFormPage( 
   FormRecognitionAttributes attributes, 
   int pageNumber 
); 
public: 
void DeleteFormPage(  
   FormRecognitionAttributes^ attributes, 
   int pageNumber 
)  
def DeleteFormPage(self,attributes,pageNumber): 

Parameters

attributes
The Form attribute object.

pageNumber
The page being deleted from the form. The page number is a 1-based index.

Remarks

The object should be a Form attribute object. To delete a page from a Master Form attribute object, call the DeleteMasterFormPagemethod.

Example

This example deletes a page from the Form

C#
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); 
} 
Requirements

Target Platforms

Help Version 22.0.2023.3.31
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Forms.Recognition Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.