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?