Update:
I googled "convert pixels to inches" and came up with a bunch of links.
This one (
http://www.classical-webdesigns.co.uk/pixelinchconvert.html)
provides a converter. However, you first need to know how many pixels (or
dots) per inch are in your display format (eg monitor or printer). Once
you've got an idea of how many pixels per inch (ppi) or dots per inch (dpi)
you're working with you can use set picture shape's height and width
properties accordingly.
For instance if your display format is 300 ppi, then your height and width
would be:
with yourshape
.Height = .Height = InchesToPoints(100 / 300)
.Width = InchesToPoints(70 / 300)
end with
Given the variability between display formats (different monitors/printers
have different dpi) have you considered using a different measurement than
pixels? Such as points, which is what Word seems to like best?