I\'m trying to check if a page in a pdf file has a bookmark and what is in that bookmark, I\'m using \"iTextSharp.text.pdf\" for reading and manipulating a pdf, but I can\'t fin
IList> bookmarks = SimpleBookmark.GetBookmark(pdfReader); foreach (Dictionary bk in bookmarks) { string bjj = bk.Values.ToArray().GetValue(0).ToString();
Use This.