Form.ExportXml

Form.ExportXml 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 ExportXml(Stream outputXmlStream)
ParameterTypeDescription
outputXmlStreamStreamOutput Xml stream.

Examples

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

See Also