Error processing SSI file
LEADTOOLS Forms (Leadtools.Forms.Recognition assembly)

Show in webframe

DeleteFormPage Method






The Form attribute object.
The page being deleted from the form. The page number is a 1-based index.
Deletes the specified page from the specified Form attribute object.
Syntax
public void DeleteFormPage( 
   FormRecognitionAttributes attributes,
   int pageNumber
)
'Declaration
 
Public Sub DeleteFormPage( _
   ByVal attributes As FormRecognitionAttributes, _
   ByVal pageNumber As Integer _
) 
'Usage
 
Dim instance As FormRecognitionEngine
Dim attributes As FormRecognitionAttributes
Dim pageNumber As Integer
 
instance.DeleteFormPage(attributes, pageNumber)

            

            
public:
void DeleteFormPage( 
   FormRecognitionAttributes^ attributes,
   int 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

For a complete example of using form recognition and processing, refer to the FormRecognitionEngine example.

This example deletes a page from the Form

Copy Code  
Imports Leadtools
Imports Leadtools.Barcode
Imports Leadtools.Codecs
Imports Leadtools.Forms
Imports Leadtools.Forms.Ocr
Imports Leadtools.Forms.Processing
Imports Leadtools.Forms.Recognition
Imports Leadtools.Forms.Recognition.Barcode
Imports Leadtools.Forms.Recognition.Ocr

''' This method deletes a page from form attributes for recognition.
Public Sub DeletePageFromForm(recognitionEngine As FormRecognitionEngine, pagenumber As Integer, form As FormRecognitionAttributes)
   recognitionEngine.OpenForm(form)
   recognitionEngine.DeleteFormPage(form, pagenumber)
   recognitionEngine.CloseForm(form)
End Sub
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 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

See Also

Reference

FormRecognitionEngine Class
FormRecognitionEngine Members

Error processing SSI file
Leadtools.Forms requires a Forms Module license and unlock key. For more information, refer to: Imaging Pro/Document/Medical Features