ImportBookmarksWithXML

ImportBookmarksWithXML(string)

Importerar bokmärken till dokumentet från XML-fil.

public void ImportBookmarksWithXML(string xmlFile)
ParameterTypBeskrivning
xmlFileStringXML-filen som innehåller bokmärkeslistan.

Exempel

PdfBookmarkEditor editor = new PdfBookmarkEditor();
editor.BindPdf("example.pdf");
editor.ImportBookmarksWithXML("bookmarks.xml");
editor.Save("example_out.pdf");

Se även


ImportBookmarksWithXML(Stream)

Importerar bokmärken till dokumentet från XML-fil.

public void ImportBookmarksWithXML(Stream stream)
ParameterTypBeskrivning
streamStreamStreama med bokmärkesdata.

Se även