Hello,
I am trying to get the absolute position of shape (top and left) inside a page.
The shape is inside a table cell.
objShape.Top return 0
objShape.Left return 0
the objShape.RelativeHorizontalPosition value is “column”
In the Word object model i can do it using this code:
top = objShape.Range.Information[WdInformation.wdHorizontalPositionRelativeToPage];
left = objShape.Range.Information[WdInformation.wdVerticalPositionRelativeToPage];
Thank you very much!
Tomer