Form.ImportFdf

Form.ImportFdf method

Imports the content of the fields from the fdf file and put them into the new pdf.

public void ImportFdf(Stream inputFdfStream)
ParameterTypeDescription
inputFdfStreamStreamThe input fdf stream.

Examples

Form form = new Form("PdfForm.pdf", "PdfForm_imported.pdf");
form.ImportFdf(new FileStream("data.fdf", FileMode.Open, FileAccess.Read));
form.Save();

See Also