How can i create bookmark but in the text of PDF document that have up to 150 pages?
I am very new to graphics programming. This is my first graphical project.
So, detailed guide would be helpful. Thx!
This article on XsPDF.com is what you looking for, check out: Add bookmark on PDF in C#.
Answers
Add hyperlink might be a solution for you.
Yes, i used it. When i click on the hyperlink area, it not redirecting to my need page.
As for my opinion, using hyperlink is not the way of solving this proble. Instead, we used PdfPage class to create the content needed. This class offters a method called AddDocumentLink. It works in our case. So, guess AddDocumentLink is what you need to create bookmark links within a PDF document.
Checked, it is great! Howerver, Adobe reader don't display this bookmark area.
Adobe Reader only changes the mouse cursor when it's over bookmark link area. So, you can design the effect on your own side. For instance, you may define a frame or underlined text or whatever you want to showing the area. One more thing, it will not redirecting if you add bookmark on the first page. Coz, first page is already on the screen when you click the link on the first page.
Great! Get all works, thx a lot for helping!