I am working on an addin to MS Word that will handle content controls
Lets assume that we have 2 cases of selected content control in Word 2007
Case 1:
- Entire content of content control is selected.
- By pressing Del key content is deleted, but not content control
- In code this could be done like this:
control.Range.Select(); - Last event that is raised is ContentControlOnEnter
Case 2:
- Content control is selected by clicking its title
- By pressing Del key entire content control is deleted
- Last event that is raised is ContentControlOnExit
How can I select content control as in Case 2 in code? How can I get to know that content control title has been clicked?
Note: I have recorded a macro: select content control by clicking its title (Case 2) and press Del. Than I have run this macro and it was working as in Case 1 - deleting only controls content.