windowsforms-114484-controls-and-libraries-pdf-viewer-examples-interactive-form-how-to-export-acro-form-data-to-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 shows how to export AcroForm data (interactive form data) from a PDF document to XML format.
You can also export the AcroForm data to FDF, XFDF, and TXT formats using the approach described below.
To export AcroForm to XML format:
Note
You may need to add the DevExpress.Docs reference to your application to access the PdfViewer.Export extension method.
using System.Windows.Forms;
using DevExpress.Pdf;
namespace ExportAcroFormDocument {
public partial class Form1 : Form {
public Form1() {
InitializeComponent();
// Load a PDF document with AcroForm data.
pdfViewer1.LoadDocument("..\\..\\AcroForm.pdf");
// Export the document to the xml format.
pdfViewer1.Export("..\\..\\AcroForm.xml", PdfFormDataFormat.Xml);
}
}
}
Imports System.Windows.Forms
Imports DevExpress.Pdf
Namespace ExportAcroFormDocument
Partial Public Class Form1
Inherits Form
Public Sub New()
InitializeComponent()
' Load a PDF document with AcroForm data.
pdfViewer1.LoadDocument("..\..\AcroForm.pdf")
' Export the document to the xml format.
pdfViewer1.Export("..\..\AcroForm.xml", PdfFormDataFormat.Xml)
End Sub
End Class
End Namespace