Form.ExportFdf

Form.ExportFdf method

Exports the content of the fields of the pdf into the fdf stream.

public void ExportFdf(Stream outputFdfStream)
ParameterTypeDescription
outputFdfStreamStreamThe output fdf stream.

Examples

Form form = new Form("PdfForm.pdf");
Stream stream = new FileStream("export.fdf", FileMode.Create, FileAccess.Write);
form.ExportFdf(stream);
stream.Close();

See Also