ImportAnnotationsFromXfdf

ImportAnnotationsFromXfdf(string)

Importa todas las anotaciones del archivo XFDF.

public void ImportAnnotationsFromXfdf(string xfdfFile)
ParámetroEscribeDescripción
xfdfFileStringEl archivo XFDF de entrada.

Ejemplos

PdfAnnotationEditor editor = new PdfAnnotationEditor();
editor.BindPdf("example.pdf");
editor.ImportAnnotationsFromXfdf("annots.xfdf");
editor.Save("example_out.pdf");

Ver también


ImportAnnotationsFromXfdf(Stream)

Importa todas las anotaciones del flujo de datos XFDF.

public void ImportAnnotationsFromXfdf(Stream xfdfStream)
ParámetroEscribeDescripción
xfdfStreamStreamEl flujo de datos XFDF de entrada.

Ejemplos

PdfAnnotationEditor editor = new PdfAnnotationEditor();
editor.BindPdf("example.pdf");
editor.ImportAnnotationsFromXfdf(File.OpenRead("annots.xfdf"));
editor.Save("example_out.pdf");

Ver también