Tom
Tom

Reputation: 308

Word Interop Catch Document Edit Event

I am trying to detect when a user edits a word document using the word interop.

I am aware that this even is not built in: http://msdn.microsoft.com/en-us/library/microsoft.office.interop.word.application_events.aspx

Is there some way to simulate this event or capture any edits some other way?

Upvotes: 3

Views: 2333

Answers (1)

Riana M.
Riana M.

Reputation: 422

It sounds like you will need to add your own custom event handler. Edit: Or use the Document.Saved property.

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#)

Upvotes: 2

Related Questions