Fill AcroForm - Fill PDF Form using C#

以下のコードスニペットは、Aspose.PDF.Drawing ライブラリでも機能します。

PDFドキュメントのフォームフィールドを埋める

フォームフィールドを埋めるには、DocumentオブジェクトのFormコレクションからフィールドを取得し、フィールドのValueプロパティを使用してフィールド値を設定します。

この例では、TextBoxFieldを選択し、Valueプロパティを使用してその値を設定します。

// 完全な例とデータファイルについては、https://github.com/aspose-pdf/Aspose.PDF-for-.NET にアクセスしてください
// ドキュメントディレクトリへのパス。
string dataDir = RunExamples.GetDataDir_AsposePdf_Forms();

// ドキュメントを開く
Document pdfDocument = new Document(dataDir + "FillFormField.pdf");

// フィールドを取得する
TextBoxField textBoxField = pdfDocument.Form["textbox1"] as TextBoxField;

// フィールド値を変更する
textBoxField.Value = "フィールドに入力される値";
dataDir = dataDir + "FillFormField_out.pdf";
// 更新されたドキュメントを保存する
pdfDocument.Save(dataDir);