Question
Using a WebBrowser control to view PDF and execute embedded javascript
Hello,
How can I execute the embedded javascript inside a pdf?
I'm using the default WPF WebBrowser control to view a pdf.
Here's the XAML:
<WebBrowser Name="_web"/>
In the .cs I do this to view the .pdf:
_web.Navigate("test.pdf");
Everything works great. The test.pdf has a javascript method called "IsComplete".
How do I call the IsComplete method?
I have Adobe Acrobat DC Pro installed.

