Class FormExporter
Info
Represents Documentize.FormExporter plugin. Used to Export Form values of PDF documents to DSV or CSV file.
public static class FormExporter
Inheritance
Inherited Members
- object.GetType(),
- object.MemberwiseClone(),
- object.ToString(),
- object.Equals(object?),
- object.Equals(object?, object?),
- object.ReferenceEquals(object?, object?),
- object.GetHashCode()
Examples
The example demonstrates how to Export Form values to CSV file.
// Create FormExportToDsvOptions object to set instructions
var options = new FormExportToDsvOptions(',', true);
// Add input file path
options.AddInput(new FileDataSource("path_to_your_pdf_file.pdf"));
// Set output file path
options.AddOutput(new FileDataSource("path_to_result_csv_file.csv"));
// Perform the process
FormExporter.Process(options);
Methods
Process(FormExportToDsvOptions)
Starts the Documentize.FormExporter processing with the specified parameters.
public static ResultContainer Process(FormExportToDsvOptions options)
Parameters
options
FormExportToDsvOptions: An options object containg instructions for the operation.
Returns
ResultContainer : An Documentize.ResultContainer object containing the result of the operation.
Exceptions
If options not set.
Namespace: Documentize Assembly: Documentize.dll