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

objectFormExporter

Inherited Members

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

Returns

ResultContainer : An Documentize.ResultContainer object containing the result of the operation.

Exceptions

ArgumentException

If options not set.

Namespace: Documentize Assembly: Documentize.dll