Saves field data for the specified file.
Syntax
Visual Basic (Declaration) | |
---|
Overloads Public Sub SaveFields( _
ByVal fileName As String _
) |
Parameters
- fileName
-
The path of the file to save.
Example
For a complete example on using the forms recognition and processing, refer to the FormProcessingEngine example.
This example save form fields to a file.
Visual Basic | Copy Code |
---|
Public 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
|
C# | Copy Code |
---|
/// This method saves master form fields to the specified file name. public void SaveMasterFormFields(FormProcessingEngine processingEngine, MasterForm form, string fieldsFileName) { processingEngine.Pages.Clear(); processingEngine.Pages.AddRange(form.ProcessingPages); processingEngine.SaveFields(fieldsFileName); } |
Requirements
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family
See Also