我正在尝试检测用户何时使用单词interop编辑word文档。
我知道这甚至没有内置: http://msdn.microsoft.com/en-us/library/microsoft.office.interop.word.application_events.aspx
有没有办法模拟此事件或以其他方式捕获任何编辑?
答案 0 :(得分:2)
听起来您需要添加自己的自定义事件处理程序。 修改或使用Document.Saved属性。
How to: Implement Interface Events
How to check if word document has changes
detecting when a user opens a word document and when he types in it (in c#)