Document.BuiltInDocumentProperties使文档变脏并提示每次保存

时间:2012-04-30 13:38:39

标签: c#-4.0 vsto word-vba word-automation

Document.BuiltInDocumentProperties使文档变脏并且每次都提示保存,即使没有任何更改。

我正在尝试在文档更改事件中获取文档的模板

ActiveDocument.BuiltInDocumentProperties["Template"]

但是ActiveDocument.CustomDocumentProperties工作正常。

2 个答案:

答案 0 :(得分:0)

Template template = (Template)ActiveDocument.get_AttachedTemplate();

此代码还获取文档的模板,但不会使文档变脏。但仍然很想知道为什么 ActiveDocument.BuiltInDocumentProperties [“Template”] 会使文档变脏。

答案 1 :(得分:0)

我不知道为什么这会使文档变脏的逻辑,也许这是一个错误。您只需执行以下操作即可解决此问题。

  

ActiveDocument.Saved = true;