Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
场景:使用 dsoframer 嵌入 word 的现有 winforms 应用程序
问题:当用户点击预览并退出预览时,字段显示的代码如“{FORMTEXT}”而不是实际值。当我在打印预览上单击打印选项时,“显示域代码而不是它们的值”选项被禁用。不知道为什么。
我希望实现 previewclose 事件,以便我可以遍历字段并将 field.ShowCodes 设置为 false。
打印选项与退出打印预览时用户看到的内容无关。Word 没有触发打印预览的事件。但是您不需要遍历字段以确保不显示字段代码。利用:
Document.ActiveWindow.View.ShowFieldCodes = False
有没有办法覆盖预览退出的功能?然后您可以在退出预览之前发送回调。