Last active
March 10, 2026 14:07
-
-
Save documentize/b4fa99da2c36f7f6d5998dc87d34f317 to your computer and use it in GitHub Desktop.
The example demonstrates how to Export Form values to CSV file by PdfForm
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 ExtractFormDataToDsvOptions object to set instructions | |
| var options = new ExtractFormDataToDsvOptions(',', true); | |
| // Add input file path | |
| options.AddInput(new FileData("path_to_your_pdf_file.pdf")); | |
| // Set output file path | |
| options.AddOutput(new FileData("path_to_result_csv_file.csv")); | |
| // Perform the process | |
| PdfForm.Extract(options); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment