> 1) Do we have highlight annotations in this application.I checked and there was Link
> class which i think will work as Link annotations but can we work with highlight
> annotations as well.
SilverDox currently preserves links, however because XPS standard
doesn't support other annotation types PDF annotations are currently
flattened. We are in the process of adding built-in support for
various markup types including PDF forms (as part of a custom
namespace) and they will be part of a future version of SilverDox.
Please keep in mind that nothing prevents you from implementing your
own markup/annotation types on top of page content Xaml.
> 2) Do we have any provision of opening/converting password protected pdf document?
Both PDFNet SDK and DocPub support password protected documents.
In case of PDFNet you can specify the password in the call to
pdfdoc.InitStdSecurityHandler("my pass") - as shown in EncTest
sample:
http://www.pdftron.com/pdfnet/samplecode.html#EncTest.
In case of DocPub, you can use -p "my pass" option. Also DocPub will
prompt the user for a password if it is not specified (do disable this
behavior use
'--noprompt' option).
> 3) Can we capture double click event on text of the document?
This should be possible. For example you could override double click
event by deriving from DocumentViewer, then obtain the text object
associated with the current page (under the mouse click). Since other
SilverDox users may have similar interest, we will provide a new
sample showing to build custom tools on top of DocumentViewer.