如何填写和编辑 PDF 表格
IronPDF 提供了一个直观的工具集,用于编辑 PDF 文档中的现有表单,包括文本区域、文本输入、复选框、组合框和单选按钮。
开始使用IronPDF
立即在您的项目中开始使用IronPDF,并享受免费试用。
如何填写和编辑 PDF 表格
- 下载用于填写和编辑PDF表单的C#库
- 使用
FromFile
方法导入目标PDF文档 - 使用
FindFormField
方法查找需修改的表单对象 - 修改Value属性以设置所需的信息
- 导出已编辑的 PDF 文档
编辑表单
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")
输出 PDF 文件
复选框和组合框表单
通过首先按其名称查找表单字段来编辑现有的复选框和组合框表单。 将Value属性分配为“是”以选中复选框表单。 通过将所需选项分配给其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")
输出 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")
此外,使用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")
输出 PDF 文件
了解如何通过编程创建 PDF 表单,请参阅以下文章:"如何创建 PDF 表单"。