彩票走势图

PDF管理控件Spire.PDF使用教程:创建 PDF 表单域并设置属性

原创|使用教程|编辑:李显亮|2019-09-05 11:22:18.143|阅读 954 次

概述:Adobe Acrobat Form (AcroForm) 是表单域的集合,用来以交互方式从用户那里收集信息。Spire.PDF支持创建多种交互式表单域,本文将介绍如何创建表单域并设置属性。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

Spire.PDF是一个专业的PDF组件,能够独立地创建、编写、编辑、操作和阅读PDF文件,支持 .NET、Java、WPF和Silverlight。Spire.PDF的PDF API拥有丰富的功能,如安全设置(包括数字签名)、PDF文本/附件/图片提取、PDF文件合并/拆分、元数据更新、章节和段落优化、图形/图像描绘和插入、表格创建和处理、数据导入等等。>>下载Spire.PDF最新试用版

C# 创建 PDF 表单域

Adobe Acrobat Form (AcroForm) 是表单域的集合,用来以交互方式从用户那里收集信息。Spire.PDF支持创建多种交互式表单域,例如:文本域、单选按钮、复选框、列表框、组合框,并在特定的表单域添加提示文本(Tooltip),方便用户输入正确信息。

创建表单域

//创建PDF文档并添加一页
PdfDocument pdf = new PdfDocument();
PdfPageBase page = pdf.Pages.Add();

//设置font, brush
PdfTrueTypeFont font = new PdfTrueTypeFont(new Font("Arial Unicode MS", 10f,FontStyle.Regular), true);
PdfBrush brush = PdfBrushes.Black;

//定义一些坐标变量并赋初值
float x = 10;
float y = 10;
float tempX = 0;
float tempY = 0;

//添加文本框
string text = "文本框: ";
page.Canvas.DrawString(text, font, brush, x, y);
tempX = font.MeasureString(text).Width + 15;
tempY = font.MeasureString(text).Height + 15;
PdfTextBoxField textbox = new PdfTextBoxField(page, "TextBox");
textbox.Bounds = new RectangleF(tempX, y, tempX * 2, 15);
textbox.BorderWidth = 0.75f;
textbox.BorderStyle = PdfBorderStyle.Solid;
pdf.Form.Fields.Add(textbox);

//添加复选框
text = "复选框: ";
y += tempY;
page.Canvas.DrawString(text, font, brush, x, y);
tempX = font.MeasureString(text).Width + 15;
tempY = font.MeasureString(text).Height + 15;
PdfCheckBoxField checkbox = new PdfCheckBoxField(page, "CheckBox");
checkbox.Bounds = new RectangleF(tempX, y, 15, 15);
checkbox.BorderWidth = 0.75f;
checkbox.Style = PdfCheckBoxStyle.Cross;
pdf.Form.Fields.Add(checkbox);

//添加列表框
text = "列表框: ";
y += tempY;
page.Canvas.DrawString(text, font, brush, x, y);
tempX = font.MeasureString(text).Width + 15;
tempY = font.MeasureString(text).Height + 15;
PdfListBoxField listbox = new PdfListBoxField(page, "ListBox");
listbox.Bounds = new RectangleF(tempX, y, tempX * 2, tempY * 2);
listbox.BorderWidth = 0.75f;
for (int i = 0; i < 3; i++)
{
    //添加项目到列表框
    string tempText = string.Format("Text {0}", i);
    string tempValue = string.Format("Value {0}", i);
    listbox.Items.Add(new PdfListFieldItem(tempText, tempValue));
}
pdf.Form.Fields.Add(listbox);

//添加单选按钮
text = "单选按钮: ";
y += tempY * 2 + 15;
page.Canvas.DrawString(text, font, brush, x, y);
tempX = font.MeasureString(text).Width + 15;
tempY = font.MeasureString(text).Height + 15;
PdfRadioButtonListField radiobutton = new PdfRadioButtonListField(page, "RadioButton");
for (int i = 0; i < 3; i++)
{
    PdfRadioButtonListItem item = new PdfRadioButtonListItem(string.Format("rb{0}", i));
    item.BorderWidth = 0.75f;
    item.Bounds = new RectangleF(tempX + i * 20, y, 15, 15);
    radiobutton.Items.Add(item);
}
pdf.Form.Fields.Add(radiobutton);

//添加组合框
text = "下拉列表框: ";
y += tempY;
page.Canvas.DrawString(text, font, brush, x, y);
tempX = font.MeasureString(text).Width + 15;
tempY = font.MeasureString(text).Height + 15;
PdfComboBoxField combobox = new PdfComboBoxField(page, "ComboBox");
combobox.Bounds = new RectangleF(tempX, y, tempX, 15);
combobox.BorderWidth = 0.75f;
for (int i = 0; i < 3; i++)
{
    //添加项目到下拉列表框
    string tempText = string.Format("Text {0}", i);
    string tempValue = string.Format("Value {0}", i);
    combobox.Items.Add(new PdfListFieldItem(tempText, tempValue));
}
pdf.Form.Fields.Add(combobox);

//保存文档
pdf.SaveToFile("PDF表单域.pdf");

PDF管理控件Spire.PDF使用教程:创建 PDF 项目符号列表和多级编号列表

添加提示文本(Tooltip)

//创建PDF文档并添加一页
PdfDocument pdf = new PdfDocument();
PdfPageBase page = pdf.Pages.Add();

//设置font, brush
PdfTrueTypeFont font = new PdfTrueTypeFont(new Font("Arial Unicode MS", 10f, FontStyle.Regular), true);
PdfBrush brush = PdfBrushes.Black;

//定义一些坐标变量并赋初值
float x = 10;
float y = 50;
float tempX = 0;
float tempY = 0;

//添加文本框
string text = "满意指数: ";
page.Canvas.DrawString(text, font, brush, x, y);
tempX = font.MeasureString(text).Width + 15;
tempY = font.MeasureString(text).Height + 15;
PdfTextBoxField textbox = new PdfTextBoxField(page, "TextBox");
textbox.Bounds = new RectangleF(tempX, y, tempX * 2, 15);
textbox.BorderWidth = 0.75f;
textbox.BorderStyle = PdfBorderStyle.Solid;

//添加文本提示信息
textbox.ToolTip = "请输入0-5之间的数字";

//添加文本域到fields collection并保存文档
pdf.Form.Fields.Add(textbox);
pdf.SaveToFile("添加文本信息.pdf");

PDF管理控件Spire.PDF使用教程:创建 PDF 项目符号列表和多级编号列表


C# 将 PDF 表单域设置为只读

当我们把PDF表单域填写完成后,可以将这些域设置为只读来阻止用户修改或删除表单域的内容。Spire.PDF组件支持以下两种方式将PDF表单域设置为只读:

  • 将表单域扁平化(Flatten)
  • 将表单域设置为只读(Read-only)

将表单域扁平化

可以使用PdfForm类的IsFlatten属性来将PDF文档中的所有表单域扁平化。代码示例如下:

//加载PDF文档
PdfDocument document = new PdfDocument();
document.LoadFromFile("Form.pdf");

//获取文档中的现有表单域
PdfForm loadedForm = document.Form;

//扁平化所有表单域
loadedForm.IsFlatten = true;

//保存文档
document.SaveToFile("Flatten1.pdf");

此外,我们还可以通过PdfField类的Flatten属性来扁平化指定表单域:

//加载PDF文档
PdfDocument document = new PdfDocument();
document.LoadFromFile("Form.pdf");

//获取文档中的现有表单域            
PdfFormWidget form = document.Form as PdfFormWidget;

//扁平化指定表单域
PdfField field = form.FieldsWidget.List[0] as PdfField;
field.Flatten = true;

//保存文档
document.SaveToFile("Flatten2.pdf");

将表单域设置为只读

将PDF文档中的所有表单域设置为只读,我们可以使用PdfForm类的ReadOnly属性:

//加载PDF文档
PdfDocument document = new PdfDocument();
document.LoadFromFile("Form.pdf");

//获取文档中的现有表单域
PdfForm loadedForm = document.Form;

//将所有表单域设置为只读
loadedForm.ReadOnly = true;

//保存文档
document.SaveToFile("ReadOnly1.pdf");

将PDF文档中的指定表单域设置为只读,我们可以使用PdfField类的ReadOnly属性:

//加载PDF文档
PdfDocument document = new PdfDocument();
document.LoadFromFile("Form.pdf");

//获取文档中的现有表单域            
PdfFormWidget form = document.Form as PdfFormWidget;

//将指定表单域设置为只读
PdfField field = form.FieldsWidget.List[0] as PdfField;
field.ReadOnly = true;

//保存文档
document.SaveToFile("ReadOnly2.pdf");

如果你有任何问题或意见,可在下方评论区留言,点击资源列表查看更多教程资源~


*想要购买正版授权的朋友可以哦~

扫描关注“慧聚IT”微信公众号,及时获取更多产品最新动态及最新资讯

1562572142.jpg


标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP