重现的步骤:
Word 2007模板应用程序如何允许用户修改文档而不会收到保存提示?
答案 0 :(得分:2)
Word检查文档的附加模板是否已被修改,并提示是否保存更改。要避免此类提示,您可以将附加模板的Saved
属性设置为true
。
在VBA中,这将是:
ActiveDocument.AttachedTemplate.Saved = True
答案 1 :(得分:1)
谢谢divo。
以下是C#中VSTO的两行:
Word.Template template = (Word.Template)this.Application.ActiveDocument.get_AttachedTemplate();
template.Saved = true;