PointsToPixels Method

Microsoft Word Visual Basic

Converts a measurement from points to pixels. Returns the converted measurement as a Single.

expression.PointsToPixels(Points, fVertical)

expression    Required. An expression that returns an Application object.

Points    Required Single. The point value to be converted to pixels.

fVertical    Optional Variant. True to return the result as vertical pixels; False to return the result as horizontal pixels.

Example

This example displays the height and width in pixels of an object measured in points.

MsgBox "180x120 points is equivalent to " _
    & PointsToPixels(180, False) & "x" _
    & PointsToPixels(120, True) _
    & " pixels on this display."