彩票走势图

Aspose.Pdf中文教程:在PDF文件中加入表格字段

原创|使用教程|编辑:郝浩|2013-04-07 13:48:58.000|阅读 1165 次

概述:Document类提供了一个名为Form的集合,帮助用户管理PDF文档中的表格字段。添加一个表单字段,需要调用Form集合的Add方法。不过首先需要创建一个要添加到PDF文档中的特定表格字段。

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

相关链接:

 Document类提供了一个名为Form的集合,帮助用户管理PDF文档中的表格字段。添加一个表单字段,需要调用Form集合的Add方法。不过首先需要创建一个要添加到PDF文档中的特定表格字段。

在这个例子中,我们选择TextBoxField这个字段。您可以使用相同的方法添加任何表格字段:

首先,创建一个特定的字段类型对象,并设置其属性。

然后,将该字段添加到Form集合。

》》》免费下载Aspose.Pdf试用版

示例代码:

C#

//Open document
Document pdfDocument = new Document("input.pdf");

//Create a field
TextBoxField textBoxField = new TextBoxField(pdfDocument.Pages[1], new Aspose.Pdf.Rectangle(100, 200, 300, 300));
textBoxField.PartialName = "textbox1";
textBoxField.Value = "Text Box";
//textBoxField.Border = new Border(
Border border = new Border(textBoxField);
border.Width = 5;
border.Dash = new Dash(1, 1);
textBoxField.Border = border;

textBoxField.Color = Aspose.Pdf.Color.FromRgb(System.Drawing.Color.Green);

//Add field to the document
pdfDocument.Form.Add(textBoxField, 1);

//Save modified PDF
pdfDocument.Save("output.pdf");
 
VB.NET
'Open document
Dim pdfDocument As New Document("input.pdf")

'Create a field
Dim textBoxField As New TextBoxField(pdfDocument.Pages(1), New Aspose.Pdf.Rectangle(100, 200, 300, 300))
textBoxField.PartialName = "textbox1"
textBoxField.Value = "Text Box"
'textBoxField.Border = new Border(
Dim border As New Border(textBoxField)
border.Width = 5
border.Dash = New Dash(1, 1)
textBoxField.Border = border

textBoxField.Color = Aspose.Pdf.Color.FromRgb(System.Drawing.Color.Green)

'Add field to the document
pdfDocument.Form.Add(textBoxField, 1)

'Save modified PDF
pdfDocument.Save("output.pdf")

标签:

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

文章转载自:慧都控件网

为你推荐

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


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP