Some test text!

Search
Hamburger Icon

Xamarin / Guides / Add bookmark

Add a bookmark to PDFs in Xamarin

To add a bookmark or a new outline item in an existing document.

PDFDoc doc = new PDFDoc(filename);
Bookmark red = Bookmark.Create(doc, "My Item");
doc.AddRootBookmark(red);

Read, add, edit PDF outlines and bookmarks Full code sample which illustrates how to read and edit existing outline items and create new bookmarks using the high-level API

About adding a bookmark

While it's possible to work with outline items or Bookmarks using the SDF API (See section 8.2.2, "Document Outline", in the PDF Reference Manual for more details), Apryse SDK simplifies the process by providing the high-level utility class PDF.Bookmark.

Note that we obtain the root Bookmark using GetFirstBookmark(). If GetFirstBookmark() returns an invalid Bookmark (where GetFirstBookmark().IsValid() is false), the document has no outline tree.

Sub-items can be added using the Bookmark.AddChild() method:

Bookmark sub_item = myitem.AddChild("My Sub-Item");

Note that a Bookmark can be associated with different kinds of Actions. The most common action is to move to another location in the current document. This type of Action is called a Go-To action. The following sample creates a new page Destination and sets the Bookmark's action:

myitem.SetAction(pdftron.PDF.Action.CreateGoto(Destination.CreateFit(doc.GetPage(1))));

Using Apryse SDK, it is also possible to quickly create named destinations. Named destinations have an advantage over explicit destinations — they allow the location of the destination to change without invalidating existing links.

To create a named destination, pass the key (under which the destination will be stored) to the Action.Create() method:

String key = "blue1";
Action blue_action = Action.CreateGoto(key, Destination.CreateFit(doc.GetPage(1));

Get the answers you need: Chat with us