I apologize if this is something simple, but I'm missing it. I'm using C# to build an add-in for Word. If a user selects some text and clicks a button, we are storing the selected Range to tag it for searching. I have a panel to display what uses have tagged. If a user updates some text in the middle of that range, I would like to have the display updated in real time.
I'm pretty sure I could listen for a key up event and update the display check if the user is currently in the middle of a tagged range. But, that seems like more effort than it should be. In an ideal word, the Range would fire a change event and I would be able to tap into it. Does anyone know if something like this exists?