打开word文档visible=false
我看到在 word vsto 中调用 Application.Documents.Open 方法时,有一个参考来设置文档是否可见。之后我如何检查该文档是否可见?
基本上,我试图通过将可见性设置为 false 来防止打开某些文档时发生某些情况,以便我可以使用 if 语句捕获它。
I see that when calling the Application.Documents.Open method in word vsto there is a reference to set if the document is visible or not. How can I, afterwards, check if the document is visible or not?
Basically i'm trying to prevent something to happen when I open certain documents by having the visibility set to false so that I can catch it with an if statement.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您尝试过 yourWordDocument.ActiveWindow.Visible 吗?
Have you tried yourWordDocument.ActiveWindow.Visible?