Hello, I'm developing a Word 2010 application-level addin using VSTO 4.0 and .Net framework 4.0. I'm looking for some events for "protected" documents. In order to protect the document, I tried to use 2 different scenarios:
- Trying to protect the entire document using GroupContentControl
- Using the Microsoft.Office.Interop.Word.Document.Protect method (ReadOnly mode)
But I could not find appropriate events for these two scenarios. I need event that is triggered after the user tries to change protected document (change the text, drag a table and so on). Is there any such events in the VSTO object model?