Converts a measurement from pixels to points. Returns the converted measurement as a Single.
expression.PixelsToPoints(Pixels, fVertical)
expression Required. An expression that returns an Application object.
Pixels Required Single. The pixel value to be converted to points.
fVertical Optional Variant. True to convert vertical pixels; False to convert horizontal pixels.
Example
This example displays the height and width in points of an object measured in pixels.
MsgBox "320x240 pixels is equivalent to " _
& PixelsToPoints(320, False) & "x" _
& PixelsToPoints(240, True) _
& " points on this display."