Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to have a function run automatically when the text in ms-word document is resized?

Currently have written a word add-in, with a button that calls the function, however it would be preferable if it was done automatically.

I have tried looking for the solution on the internet, and looking through the accessible methods, however i'm not sure what i should be looking for, or what this would be called as i am new to c#.

Edit: Is what i am looking for called a Hook?

An answer from Change event in Microsoft.Office.Interop.Word gives the list of Document Events. It may be possible to use the SelectionChange to see if the text size has changed with the selection staying in the same place, but i'm not sure if that counts as a selection change?

share|improve this question
It probably fires the onChange event, though if you dont find anything else you might want to look at the undo functionality. Maybe there is some information stored you could use. – CSharpie Jan 7 at 17:08

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.