PDFフォームの記入および編集方法

Chaknith related to PDFフォームの記入および編集方法
チャクニット・ビン
2023年12月10日
更新済み 2024年12月17日
共有:
This article was translated from English: Does it need improvement?
Translated
View the article in English

IronPDFは、PDFドキュメント内の既存のフォームを編集するための直感的なツールセットを提供しており、テキストエリア、テキスト入力、チェックボックス、コンボボックス、ラジオボタンを含みます。

IronPDFを始めましょう

今日から無料トライアルでIronPDFをあなたのプロジェクトで使い始めましょう。

最初のステップ:
green arrow pointer


フォームを編集

IronPDFはPDF文書内の様々な種類の既存のフォームフィールドを簡単に編集できます。

テキストエリアと入力フォーム

テキストエリアや入力フォームを編集するには、Value プロパティに希望する情報を割り当てます。 以下のコードは、まずフォーム名を指定してFindFormFieldメソッドを使用してフォームオブジェクトを見つけます。 次に、オブジェクトのValueプロパティにアクセスして割り当てます。

:path=/static-assets/pdf/content-code-examples/how-to/edit-forms-input-textarea.cs
using IronPdf;

PdfDocument pdf = PdfDocument.FromFile("textAreaAndInputForm.pdf");

// Set text input form values
pdf.Form.FindFormField("firstname").Value = "John";
pdf.Form.FindFormField("lastname").Value = "Smith";

// Set text area form values
pdf.Form.FindFormField("address").Value = "Iron Software LLC\r\n205 N. Michigan Ave.";

pdf.SaveAs("textAreaAndInputFormEdited.pdf");
Imports Microsoft.VisualBasic
Imports IronPdf

Private pdf As PdfDocument = PdfDocument.FromFile("textAreaAndInputForm.pdf")

' Set text input form values
pdf.Form.FindFormField("firstname").Value = "John"
pdf.Form.FindFormField("lastname").Value = "Smith"

' Set text area form values
pdf.Form.FindFormField("address").Value = "Iron Software LLC" & vbCrLf & "205 N. Michigan Ave."

pdf.SaveAs("textAreaAndInputFormEdited.pdf")
$vbLabelText   $csharpLabel

PDFドキュメント出力


チェックボックスおよびコンボボックス フォーム

既存のチェックボックスおよびコンボボックスフォームを編集するには、まずフォームフィールドをその名前で見つけます。 チェックボックスフォームをチェックするには、Value プロパティに「Yes」を割り当てます。 コンボボックスで利用可能な選択肢を選択するには、目的の選択肢をそのValueプロパティに割り当てます。 便利のために、Choices プロパティにアクセスして、すべての選択肢の値を取得します。

:path=/static-assets/pdf/content-code-examples/how-to/edit-forms-checkbox-combobox.cs
using IronPdf;
using System;

PdfDocument pdf = PdfDocument.FromFile("checkboxAndComboboxForm.pdf");

var checkboxForm = pdf.Form.FindFormField("taskCompleted");
// Check the checkbox form
checkboxForm.Value = "Yes";

var comboboxForm = pdf.Form.FindFormField("priority");
// Set the combobox value
comboboxForm.Value = "Low";

// Print out all the available choices
foreach (var choice in comboboxForm.Choices)
{
    Console.WriteLine(choice);
}
pdf.SaveAs("checkboxAndComboboxFormEdited.pdf");
Imports IronPdf
Imports System

Private pdf As PdfDocument = PdfDocument.FromFile("checkboxAndComboboxForm.pdf")

Private checkboxForm = pdf.Form.FindFormField("taskCompleted")
' Check the checkbox form
checkboxForm.Value = "Yes"

Dim comboboxForm = pdf.Form.FindFormField("priority")
' Set the combobox value
comboboxForm.Value = "Low"

' Print out all the available choices
For Each choice In comboboxForm.Choices
	Console.WriteLine(choice)
Next choice
pdf.SaveAs("checkboxAndComboboxFormEdited.pdf")
$vbLabelText   $csharpLabel

PDFドキュメント出力


ラジオボタンフォーム

IronPDFでラジオボタンフォームを使用する場合、同じグループのラジオボタンは一つのフォームオブジェクト内に含まれます。 ラジオボタンの値を編集するには、フォームオブジェクトのValueプロパティを利用可能な選択肢のいずれかに割り当ててください。 すべての利用可能な選択肢をAnnotationsプロパティで取得します。 以下のコードはラジオボタンの値を編集する方法を示しています。

:path=/static-assets/pdf/content-code-examples/how-to/edit-forms-radiobutton.cs
using IronPdf;
using System;

PdfDocument pdf = PdfDocument.FromFile("radioButtomForm.pdf");
var radioForm = pdf.Form.FindFormField("traveltype");

// Set the radio button value
radioForm.Value = "Airplane";

// Print out all the available choices
foreach(var annotation in radioForm.Annotations)
{
    Console.WriteLine(annotation.OnAppearance);
}

pdf.SaveAs("radioButtomFormEdited.pdf");
Imports IronPdf
Imports System

Private pdf As PdfDocument = PdfDocument.FromFile("radioButtomForm.pdf")
Private radioForm = pdf.Form.FindFormField("traveltype")

' Set the radio button value
radioForm.Value = "Airplane"

' Print out all the available choices
For Each annotation In radioForm.Annotations
	Console.WriteLine(annotation.OnAppearance)
Next annotation

pdf.SaveAs("radioButtomFormEdited.pdf")
$vbLabelText   $csharpLabel

さらに、ラジオボタンの選択を解除するには、Clear メソッドを使用します。 このメソッドは、オブジェクトがRadioFormField型の場合にのみアクセスできます。 PDFからラジオフォームオブジェクトにアクセスすると、それをRadioFormField型にキャストすることができます。

PDFドキュメント出力


フォームを削除

PDFからフォームを削除するには、まずFindFormFieldメソッドを使用して対象のフォームを選択します。 フォームオブジェクトをForm.Removeメソッドに渡します。このメソッドはPdfDocumentオブジェクトからアクセスできます。 このメソッドをtextAreaAndInputForm.pdfファイルで試してみましょう。

:path=/static-assets/pdf/content-code-examples/how-to/edit-forms-remove-form.cs
using IronPdf;
using IronSoftware.Forms;

PdfDocument pdf = PdfDocument.FromFile("textAreaAndInputForm.pdf");

// Remove Form
IFormField targetForm = pdf.Form.FindFormField("firstname");
pdf.Form.Remove(targetForm);

pdf.SaveAs("removedForm.pdf");
Imports IronPdf
Imports IronSoftware.Forms

Private pdf As PdfDocument = PdfDocument.FromFile("textAreaAndInputForm.pdf")

' Remove Form
Private targetForm As IFormField = pdf.Form.FindFormField("firstname")
pdf.Form.Remove(targetForm)

pdf.SaveAs("removedForm.pdf")
$vbLabelText   $csharpLabel

PDFドキュメント出力

次の記事でプログラムによるPDFフォームの作成方法を学びます:「PDFフォームの作成方法」。

Chaknith related to PDFドキュメント出力
ソフトウェアエンジニア
チャクニットは開発者のシャーロック・ホームズです。彼がソフトウェアエンジニアリングの将来性に気付いたのは、楽しみでコーディングチャレンジをしていたときでした。彼のフォーカスはIronXLとIronBarcodeにありますが、すべての製品でお客様を助けることに誇りを持っています。チャクニットは顧客と直接話すことで得た知識を活用して、製品自体のさらなる改善に貢献しています。彼の逸話的なフィードバックは、単なるJiraチケットを超えて、製品開発、ドキュメントおよびマーケティングをサポートし、顧客の全体的な体験を向上させます。オフィスにいないときは、機械学習やコーディングについて学んだり、ハイキングを楽しんだりしています。