Application.PixelsToPoints (Word)
Converts a measurement from pixels to points. Returns the converted measurement as a Single.
PixelsToPoints (Pixels, fVertical)
MsgBox "320x240 pixels is equivalent to " _
& PixelsToPoints(320, False) & "x" _
& PixelsToPoints(240, True) _
& " points on this display."
Arguments
The following argument is required
Pixels (Single) - The pixel value to be converted to points.
Optional arguments
The following argument is optional
fVertical (Boolean) - True to convert vertical pixels; False to convert horizontal pixels.