I am trying to create a shape over a given Range object in winword addin.
Currently I am only able to get the left and top of the begining of the Range , but I can't find the witdh and height of that range.
This is what I am doing to get the top/left :
float left= r.get_Information(Word.WdInformation.wdHorizontalPositionRelativeToPage);
float top= r.get_Information(Word.WdInformation.wdVerticalPositionRelativeToPage);
to add the shape I am doing something like that over the Selection object which hold the range :
Sel.Document.Shapes.AddShape((int)Office.MsoAutoShapeType.msoShapeRectangle,
left,
top,
100,
100, r )
In addition to that, I would like to be notifed whenever that range is changing (changing its content).