Skip to main content
A newer version of this page is available. .

How to: Export the AcroForm Data

This example shows how to export AcroForm data (interactive form data) from a PDF document to XML or FDF format.

To do this, call the PdfViewerControl.ExportFormData method in the PdfViewerControl.DocumentLoaded event handler.

This method invokes the Save As dialog window, where you can specify a desired file format (XML or FDF) and the file name.

<Window
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:dxpdf="http://schemas.devexpress.com/winfx/2008/xaml/pdf" 
        x:Class="ExportFormData.MainWindow"
        Title="MainWindow" Height="350" Width="525">
    <Grid>
        <dxpdf:PdfViewerControl x:Name="Viewer" DocumentLoaded="Viewer_DocumentLoaded" />
    </Grid>
</Window>