PdfAnnotationEditor.ImportAnnotationsFromFdf

PdfAnnotationEditor.ImportAnnotationsFromFdf method

Imports all annotations from FDF file.

public void ImportAnnotationsFromFdf(string fdfFile)
ParameterTypeDescription
fdfFileStringThe input FDF file.

Examples

PdfAnnotationEditor editor = new PdfAnnotationEditor();
editor.BindPdf("example.pdf");
editor.ImportAnnotationsFromFdf("annots.fdf");
editor.Save("example_out.pdf");

See Also