Form.ExportXfdf

Form.ExportXfdf method

Exports the content of the fields of the pdf into the xml stream. The button field’s value will not be exported.

public void ExportXfdf(Stream outputXfdfStream)
ParameterTypeDescription
outputXfdfStreamStreamThe output xml stream.

Examples

Form form = new Form("PdfForm.pdf");
FileStream fs = new FileStream("export.xfdf", FileMode.Create, FileAccess.Write);
form.ExportXfdf(fs);
fs.Close();

See Also