Example T210253
Visible to All Users

PDF Document API - Fill Interactive Form Fields

This example demonstrates how to retrieve a list of form field names and specify field values of an interactive form.

[!IMPORTANT]
You need a license for the DevExpress Office File API Subscription or DevExpress Universal Subscription to use this library in production code.

Implementation Details

  1. Call the PdfDocumentProcessor.LoadDocument method to load a PDF document with an interactive form.
  2. Call the PdfDocumentProcessor.GetFormFieldNames method to retrieve a list of field names and iterate through the returned string collection.
  3. Use the PdfDocumentFacade.AcroForm property to get interactive form field options. These options allow you to change form fields and appearance properties.
    Refer to the following example for information on how to use the PdfDocumentFacade class: PDF Document API - Change PDF Form Field Parameters.

Files to Review

More Examples

Documentation

Interactive Forms in PDF Documents

Does this example address your development requirements/objectives?

(you will be redirected to DevExpress.com to submit your response)

Example Code

PdfFormFilling/PdfFormFilling.cs(vb)
C#
using DevExpress.Pdf; using DevExpress.XtraEditors; using System; using System.Collections.Generic; namespace InteractiveFormFilling { public partial class PdfFormFilling : XtraForm { string filePath = AppContext.BaseDirectory; string fileName = "FieldTypes"; public PdfFormFilling() { InitializeComponent(); pdfViewer1.LoadDocument(filePath + fileName + ".pdf"); } private void btnGetFieldNames_Click(object sender, EventArgs e) { #region #GetFields // Load a document with an interactive form. using (PdfDocumentProcessor documentProcessor = new PdfDocumentProcessor()) { documentProcessor.LoadDocument(filePath + fileName + ".pdf"); // Get names of interactive form fields. IList<string> names = documentProcessor.GetFormFieldNames(); // Show the field names in the rich text box. string[] strings = new string[names.Count]; names.CopyTo(strings, 0); richTextBox1.Lines = strings; } #endregion #GetFields } private void btnFillFormData_Click(object sender, EventArgs e) { #region #FillFields // Load a document with an interactive form. using (PdfDocumentProcessor documentProcessor = new PdfDocumentProcessor()) { documentProcessor.LoadDocument(filePath + fileName + ".pdf"); PdfDocumentFacade documentFacade = documentProcessor.DocumentFacade; PdfAcroFormFacade acroForm = documentFacade.AcroForm; PdfTextFormFieldFacade nameField = acroForm.GetTextFormField("FirstName"); nameField.Value = "Janet"; PdfTextFormFieldFacade surnameField = acroForm.GetTextFormField("LastName"); surnameField.Value = "Leverling"; PdfListBoxFormFieldFacade categoryField = acroForm.GetListBoxFormField("Category"); categoryField.Values = new List<string>() { "Entertainment", "Meals", "Morale" }; PdfTextFormFieldFacade addressField = acroForm.GetTextFormField("Address.Address"); addressField.Value = "98033, 722 Moss Bay Blvd."; PdfRadioGroupFormFieldFacade genderField = acroForm.GetRadioGroupFormField("Gender"); genderField.Value = genderField.Field.Items[0].Value; PdfComboBoxFormFieldFacade countryField = acroForm.GetComboBoxFormField("Address.Country"); countryField.Value = countryField.Items[0].Value; PdfCheckBoxFormFieldFacade checkField = acroForm.GetCheckBoxFormField("Check"); checkField.IsChecked = true; // Save the modified document. documentProcessor.SaveDocument(filePath + fileName + "_new.pdf"); btnFillFormData.Enabled = false; btnLoadFilledPDF.Enabled = true; } #endregion #FillFields } private void btnLoadFilledPDF_Click(object sender, EventArgs e) { // Load a document in the PDF Viewer. pdfViewer1.LoadDocument(filePath + fileName + "_new.pdf"); } } }

Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.