Hi
I am creating a single PDF by joining multiple PDFS together and I want to set bookmarks at the top of each page which are clickable from the front page of the final diocument. is this possible.
I have tried using the code below but it does nothing
kind regards
Jonathan
PdfLoadedDocument loadedDocument = new PdfLoadedDocument(addfilename);
loadedDocument.ViewerPreferences.PageMode =
PdfPageMode.UseOutlines;
loadedDocument.CreateBookmarkRoot(PdfBookmark pdfBookMark = loadedDocument.Bookmarks.Add(strSectionname);
pdfBookMark.Destination =
new PdfDestination(loadedDocument.Pages[0]);
docFinal.Append(loadedDocument);