←Select platform

AddMasterFormPage(FormRecognitionAttributes,RasterImage,PageRecognitionOptions) Method

Summary

Appends a new page to the specified Master Form attributes object. The Master Form attributes object should be opened before the addition using OpenMasterForm.

Syntax

C#
VB
C++
  
Public Overloads Sub AddMasterFormPage( _ 
   ByVal attributes As Leadtools.Forms.Recognition.FormRecognitionAttributes, _ 
   ByVal page As Leadtools.RasterImage, _ 
   ByVal pageOptions As Leadtools.Forms.Recognition.PageRecognitionOptions _ 
)  

Parameters

attributes
The Master Form attributes object.

page
The page image that is going to be added to Master Form attributes object.

pageOptions
Specifies the page options.

Remarks

The attributes should be a Master Form attributes, this method does not work for Forms attributes. To add a page to a Form attributes use AddFormPage(formrecognitionattributes,rasterimage,pagerecognitionoptions).

Example

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

This example adds a page to the master form

C#
VB
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 adds a page to a Master Form recognition attributes. 
public void AddPageToMasterForm(FormRecognitionEngine recognitionEngine, RasterImage image, FormRecognitionAttributes attributes) 
{ 
   recognitionEngine.OpenMasterForm(attributes); 
   recognitionEngine.AddMasterFormPage(attributes, image, null); 
   recognitionEngine.CloseMasterForm(attributes); 
} 
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 adds a page to a Master Form recognition attributes. 
Public Sub AddPageToMasterForm(recognitionEngine As FormRecognitionEngine, image As RasterImage, attributes As FormRecognitionAttributes) 
   recognitionEngine.OpenMasterForm(attributes) 
   recognitionEngine.AddMasterFormPage(attributes, image, Nothing) 
   recognitionEngine.CloseMasterForm(attributes) 
End Sub 

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Forms.Recognition Assembly