ImportBookmarksWithXML
ImportBookmarksWithXML(string)
Imports bookmarks to the document from XML file.
public void ImportBookmarksWithXML(string xmlFile)
Parameter | Type | Description |
---|---|---|
xmlFile | String | The XML file containing bookmarks list. |
Examples
PdfBookmarkEditor editor = new PdfBookmarkEditor();
editor.BindPdf("example.pdf");
editor.ImportBookmarksWithXML("bookmarks.xml");
editor.Save("example_out.pdf");
See Also
- class PdfBookmarkEditor
- namespace Aspose.Pdf.Facades
- assembly Aspose.PDF
ImportBookmarksWithXML(Stream)
Imports bookmarks to the document from XML file.
public void ImportBookmarksWithXML(Stream stream)
Parameter | Type | Description |
---|---|---|
stream | Stream | Stream with bookmarks data. |
See Also
- class PdfBookmarkEditor
- namespace Aspose.Pdf.Facades
- assembly Aspose.PDF