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);
 
Back
Top