使用主动辅助功能 (MSAA) 获取插入符位置
Can anyone give an example of using the MSAA in order to get the caret position (text insertion point and not the cursor).
Thanks for any help,
Momico
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 MSAA 的插入符跟踪可以通过使用 WinEventHook 机制来实现,并监视以下事件:EVENT_OBJECT_CREATE、EVENT_OBJECT_DESTROY、EVENT_OBJECT_SHOW、EVENT_OBJECT_HIDE、EVENT_OBJECT_LOCATIONCHANGE。
如需进一步说明和示例,请访问以下链接:
说明 WinEventHook 的使用
SetWinEventHook(带有示例)
谢谢,
莫米科。
Caret tracking using MSAA can be achieved by using WinEventHook mechanism, and watching for the following events: EVENT_OBJECT_CREATE, EVENT_OBJECT_DESTROY, EVENT_OBJECT_SHOW, EVENT_OBJECT_HIDE, EVENT_OBJECT_LOCATIONCHANGE.
For further explanation and example visit the following links:
Explains the use of WinEventHook
SetWinEventHook (with example)
Thx,
Momico.