Leadtools.Forms.Recognition Requires Document/Medical product license | Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
AddFormPage(FormRecognitionAttributes,RasterImage,PageRecognitionOptions) Method
See Also  Example
Leadtools.Forms.Recognition Namespace > FormRecognitionEngine Class > AddFormPage Method : AddFormPage(FormRecognitionAttributes,RasterImage,PageRecognitionOptions) Method



attributes
The Form attributes object.
page
The page image that is going to be added to the Form attributes object.
pageOptions
Specifies the options for the page.
attributes
The Form attributes object.
page
The page image that is going to be added to the Form attributes object.
pageOptions
Specifies the options for the page.
Appends a new page to the specified Form attributes object. The Form attributes object should be opened before the addition using FormRecognitionEngine.OpenForm.

Syntax

Visual Basic (Declaration) 
Overloads Public Sub AddFormPage( _
   ByVal attributes As FormRecognitionAttributes, _
   ByVal page As RasterImage, _
   ByVal pageOptions As PageRecognitionOptions _
) 
Visual Basic (Usage)Copy Code
Dim instance As FormRecognitionEngine
Dim attributes As FormRecognitionAttributes
Dim page As RasterImage
Dim pageOptions As PageRecognitionOptions
 
instance.AddFormPage(attributes, page, pageOptions)
C# 
public void AddFormPage( 
   FormRecognitionAttributes attributes,
   RasterImage page,
   PageRecognitionOptions pageOptions
)
C++/CLI 
public:
void AddFormPage( 
   FormRecognitionAttributes^ attributes,
   RasterImage page,
   PageRecognitionOptions^ pageOptions
) 

Parameters

attributes
The Form attributes object.
page
The page image that is going to be added to the Form attributes object.
pageOptions
Specifies the options for the page.

Example

For a complete example on using the forms recognition and processing, refer to the FormRecognitionEngine example.

This example adds a page to the form

Visual BasicCopy Code
''' This method adds a page to form attributes for recognition.
Public Sub AddPageToForm(ByVal recognitionEngine As FormRecognitionEngine, ByVal image As RasterImage, ByVal attributes As FormRecognitionAttributes)
   recognitionEngine.OpenForm(attributes)
   recognitionEngine.AddFormPage(attributes, image, Nothing)
   recognitionEngine.CloseForm(attributes)
End Sub
C#Copy Code
/// This method adds a page to form attributes for recognition. 
public void AddPageToForm(FormRecognitionEngine recognitionEngine, RasterImage image, FormRecognitionAttributes attributes) 

   recognitionEngine.OpenForm(attributes); 
   recognitionEngine.AddFormPage(attributes, image, null); 
   recognitionEngine.CloseForm(attributes); 
}

Remarks

The attributes should be a Form attributes, this method does not work for Master Forms attributes. To add a page to a Master Form attributes use AddMasterFormPage.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also

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