Can I catch events from MS Word

  • Thread starter Thread starter budhA
  • Start date Start date
B

budhA

Hi,

Is there any way to catch an event from MS Word. For example if user clicks
on File -> Save or changes font or something else can I recognize that in my
application (catch an event)?
 
I belive there are a range of event in
Microsoft.Office.Interop.Word.Application.

e.g
Microsoft.Office.Interop.Word.Application app = new
Microsoft.Office.Interop.Word.ApplicationClass();

app.DocumentBeforeSave += new
Microsoft.Office.Interop.Word._DocumentBeforeSaveEventHandler
(YourMethodGoesHere);
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top