Saves field data for the specified file.
Syntax
public void SaveFields(
string fileName
)
Public Overloads Sub SaveFields( _
ByVal fileName As String _
)
public void saveFields(
java.lang.String string
) throws java.lang.Exception;
public:
void SaveFields(
String^ fileName
)
fileName
The path of the file to save.
For a complete example on using the forms recognition and processing, refer to the FormProcessingEngine example.
This example save form fields to a file.
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 saves master form fields to the specified filename.
private void SaveMasterFormFields(FormProcessingEngine processingEngine, MasterForm form, string fieldsFileName)
{
processingEngine.Pages.Clear();
processingEngine.Pages.AddRange(form.ProcessingPages);
processingEngine.SaveFields(fieldsFileName);
}
Imports Leadtools
Imports Leadtools.Barcode
Imports Leadtools.Codecs
Imports Leadtools.Forms.Common
Imports Leadtools.Ocr
Imports Leadtools.Forms.Processing
Imports Leadtools.Forms.Recognition
Imports Leadtools.Forms.Recognition.Barcode
Imports Leadtools.Forms.Recognition.Ocr
''' This method saves master form fields to the specified filename.
Private Sub SaveMasterFormFields(ByVal processingEngine As FormProcessingEngine, ByVal form As MasterForm, ByVal fieldsFileName As String)
processingEngine.Pages.Clear()
processingEngine.Pages.AddRange(form.ProcessingPages)
processingEngine.SaveFields(fieldsFileName)
End Sub
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document