←Select platform

CreateTemplateForm Method

Summary

Creates a new object of type ITemplateForm.

Syntax
C#
VB
C++
Java
public ITemplateForm CreateTemplateForm() 
public ITemplateForm createTemplateForm(); 
Public Function CreateTemplateForm() As ITemplateForm 
public:  
   ITemplateForm^ CreateTemplateForm() 

Return Value

A new object of type ITemplateForm created internally.

Remarks

ITemplateForm objects can only be created using this method.

Example

The following example is a snippet of a larger example project. To run the larger example project, follow the work flow laid out in the OMREngine example. You can also download the complete example in Visual Studio 2017.

C#
using Leadtools; 
using Leadtools.Barcode; 
using Leadtools.Codecs; 
using Leadtools.Forms.Processing.Omr; 
using Leadtools.Ocr; 
 
public static ITemplateForm CreateNewTemplate(RasterImage templateImage, OmrEngine engine) 
{ 
   ITemplateForm template = engine.CreateTemplateForm(); 
   template.Name = "Example Template"; 
 
   // add each page in the source image to the template 
   // templates can be constructed from any number of rasterimages from different sources 
   for (int i = 0; i < templateImage.PageCount; i++) 
   { 
      templateImage.Page = i + 1; 
      template.Pages.AddPage(templateImage); 
   } 
 
   return template; 
} 

Requirements

Target Platforms

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

Leadtools.Forms.Processing.Omr Assembly