I am using Acrobat Reader 10.1.0
which provide annotation facility. And I want to show PDF
file in my C# application so that I can use this annotation facility.
For this I approaches two solutions:
- Use Web Browser control (System.Windows.Forms.WebBrowser), and it shows
PDF
file successfully in my C# application. - Acrobat
PDF
开发者_开发技巧 Reader COM component, and it also showsPDF
file successfully in my C# application.
But the problem on both the solution is, I can't use annotation facility. As annotation is disabled when PDF
opened in C#.NET application.
NOTE: Annotation facility is like, add your comments in PDF
file, highlight some text in PDF
file.
Regards
Pushkar
You'll need to use a third-party component or library.
One example that does exactly what you ask is Atalasoft DotImage (www.atalasoft.com), but it is not free.
There are 3 possible ways, that I know if, to get around this:
1) Dont use Acrobat and provide your own interface (might be a good idea if web based)
2) Look for an off-the-shelf solution
3) Open Acrobat/Reader from your own application (ie not within the same interface/form) and try to detect changes to the file.
精彩评论