获取 Adobe Reader 实例当前打开的文档和视图中的页面
我的应用程序需要知道当前在 adobe reader 中打开的文档是什么,以及当前查看的页面是什么。有可能查出来吗?
我的应用程序是 .net 应用程序,以管理员权限运行。
My app needs to know what is the document currently opened in adobe reader, and what is the current page in view. Is it possible to find that out?
My app is .net application, an runs with admin privileges.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可以使用 Adobe IAC 实现,它在 Windows 上基本上是 COM。
据我所知,您需要致电
GetActiveDoc ()
在 Reader 实例上,然后调用GetAVPageView()
在结果上,然后呼叫GetPageNum()
。This is possible using Adobe IAC which on Windows is basically COM.
From what I gather you need to call
GetActiveDoc ()
on the Reader instance and then callGetAVPageView()
on the result and then callGetPageNum()
.