PdfBookmarkEditor.ExportBookmarksToXML

ExportBookmarksToXML(string)

Exports bookmarks to XML file.

public void ExportBookmarksToXML(string xmlFile)
ParameterTypeDescription
xmlFileStringThe output XML file.

Examples

PdfBookmarkEditor editor = new PdfBookmarkEditor();
editor.BindPdf("example.pdf");
editor.ExportBookmarksToXML("bookmarks.xml");

See Also


ExportBookmarksToXML(Stream)

Exports bookmarks to XML stream.

public void ExportBookmarksToXML(Stream stream)
ParameterTypeDescription
streamStreamOutput stream where data will be stored.

See Also