Created
June 11, 2025 08:20
-
-
Save documentize/c304ff9f891f35b959a019e820e46291 to your computer and use it in GitHub Desktop.
The example demonstrates how to Export Form values to CSV file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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