Skip to content

Instantly share code, notes, and snippets.

@documentize
Created June 11, 2025 08:20
Show Gist options
  • Save documentize/c304ff9f891f35b959a019e820e46291 to your computer and use it in GitHub Desktop.
Save documentize/c304ff9f891f35b959a019e820e46291 to your computer and use it in GitHub Desktop.
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);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment