windowsforms-114487-controls-and-libraries-pdf-viewer-examples-interactive-form-how-to-import-acro-form-data-from-xml.md
Important
The Universal Subscription or an additional Office File API Subscription is required to use this example in production code. Refer to the DevExpress Subscription page for pricing information.
This example demonstrates how to import AcroForm data (interactive form data) from XML format to a PDF document.
You can also import the AcroForm data from FDF, XFDF, and TXT formats, as described below.
To import interactive forms from XML format:
Note
You may need to add the DevExpress.Docs reference to your application to access the PdfViewer.Import extension methods.
using System.Windows.Forms;
using DevExpress.Pdf;
namespace ImportAcroForm {
public partial class Form1 : Form {
public Form1() {
InitializeComponent();
// Load a PDF document with AcroForm data.
pdfViewer1.LoadDocument("..\\..\\InitialAcroForm.pdf");
// Import the document from an XML format.
pdfViewer1.Import("..\\..\\FilledAcroForm.xml");
// Save the imported document.
pdfViewer1.SaveDocument("..\\..\\ImportedAcroForm.pdf");
}
}
}
Imports System.Windows.Forms
Imports DevExpress.Pdf
Namespace ImportAcroForm
Partial Public Class Form1
Inherits Form
Public Sub New()
InitializeComponent()
' Load a PDF document with AcroForm data.
pdfViewer1.LoadDocument("..\..\InitialAcroForm.pdf")
' Import the document from an XML format.
pdfViewer1.Import("..\..\FilledAcroForm.xml")
' Save the imported document.
pdfViewer1.SaveDocument("..\..\ImportedAcroForm.pdf")
End Sub
End Class
End Namespace