// この例は、フォームの値をCSVファイルにエクスポートする方法を示します。
// 指示を設定するためにFormExportToDsvOptionsオブジェクトを作成します。
var options = new FormExportToDsvOptions(',', true);
// 入力ファイルパスを追加
options.AddInput(new FileDataSource("path_to_your_pdf_file.pdf"));
// 出力ファイルパスを設定
options.AddOutput(new FileDataSource("path_to_result_csv_file.csv"));
// プロセスを実行
FormExporter.Process(options);
// この例は、PDFドキュメントを暗号化する方法を示します。
// 指示を設定するためにEncryptionOptionsオブジェクトを作成します。
var options = new EncryptionOptions("123456", "qwerty");
// 入力ファイルパスを追加
options.AddInput(new FileDataSource("path_to_your_pdf_file.pdf"));
// 出力ファイルパスを設定
options.AddOutput(new FileDataSource("path_to_result_pdf_file.pdf"));
// プロセスを実行
Security.Process(options);
// この例は、PDFドキュメントを復号化する方法を示します。
// 指示を設定するためにDecryptionOptionsオブジェクトを作成します。
var options = new DecryptionOptions("123456");
// 入力ファイルパスを追加
options.AddInput(new FileDataSource("path_to_your_pdf_file.pdf"));
// 出力ファイルパスを設定
options.AddOutput(new FileDataSource("path_to_result_pdf_file.pdf"));
// プロセスを実行
Security.Process(options);