vsto (word office addin) : 保存只读文档
如何在没有保存对话框的情况下保存只读文档。我尝试在 ActiveDocument.Save() 之前使用 FileInfo IsReadOnly 属性来更改文件的状态,但没有帮助。 感谢您的帮助!
How can I save read-only document without save dialog. I have tried to change status of file by using FileInfo IsReadOnly property before ActiveDocument.Save() ,but it didn't help.
Thanks for help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 SaveAs() 而不是 Save()。如果您在保存之前已将文件更改为读写,则可以提供当前文件的名称来覆盖它。
Use SaveAs() rather than Save(). If you have changed the file to read-write before saving then you can provide the current file's name to overwrite it.
也许您可以使用其中一些:
不幸的是,Word 中没有内置的 SaveCopyAs 方法。
问候,约尔格
Maybe you can use some of this:
Unfortunately there is no build-in SaveCopyAs-Method in Word.
Regards, Jörg