import com.spire.pdf.PdfPageBase; import com.spire.pdf.fields.*; import com.spire.pdf.graphics.*; public class CreateFormFields { public static void main(String[] args) throws Exception { //创建PdfDocument对象 PdfDocument doc = new PdfDocument(); //添加页面 PdfPageBase page = doc.getPa...
Create PDF forms for data collection and organization in a few simple steps. Open Acrobat Create form fieldsIn Acrobat, you create a form field using form tools. For each field type, you can set various options through the form field Properties dialog.Open...
{//获取指定表单域PdfField field = formWidget.FieldsWidget.List[i]asPdfField;//删除表单域formWidget.FieldsWidget.Remove(field); }//通过表单域名获取指定表单//PdfField field = formWidget.FieldsWidget["name"];//删除该表单域//formWidget.FieldsWidget.Remove(field);//保存PDF文件pdf.SaveToFile("删除...
All Fields: Locks all form fields. All Fields Except These: Allows edits in selected fields. Just These Fields: Locks only selected fields. This Script Executes When Field Is Signed: Enables custom JavaScript execution post-signature. Use the Edit button to modify or create new JavaScript actions...
Step 1: Upload PDF form or create from scratch Drag your PDF file on to the document dropzone above, or click Upload to choose a file from your computer. Alternatively, click the button to create a form on a blank page. 2 Step 2: Add form fields to your PDF ...
http://www.adobepress.com/articles/article.asp?p=2158443&seqNum=3 http://www.pdfill.com/pdf_form_maker.html 使用iTextSharp填充FormField方法: http://www.codeproject.com/Articles/23112/Fill-in-PDF-Form-Fields-using-the-Open-Source-iTex...
Use these steps to create fillable PDFs directly on a Chromebook. Make completing digital PDF forms fast and easy with fillable sections.
PdfAcroFormform=PdfAcroForm.getAcroForm(pdfDoc,true);Map<String,PdfFormField>fields=form.getFormFields();fields.get("name").setValue("James Bond").setBackgroundColor(Color.ORANGE);fields.get("language").setValue("English");fields.get("experience1").setValue("Yes");fields.get("experience2"...
First, you need to create a text layout of the document. Then, once it is ready, you can add fillable fields. They are available in the Form tab on the upper toolbar. The editor offers to add: Text fields to enter any information. Radio buttons to select only one option from a grou...
// Add combo box object to form fields collection of document object doc.Form.Add(combo); dataDir = dataDir + "ComboBox_out.pdf"; // Save the PDF document doc.Save(dataDir); 修改PDF文档中的表单字段 要修改现有的表单字段,您可以从Form集合中获取该字段并设置其属性。然后保存更新的PDF文档。