Application.PointsToPixels method (Word)

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

Syntax

expression. PointsToPixels( _Points_ , _fVertical_ )

expression Required. A variable that represents an Application object.

Parameters

Name Required/Optional Data type Description
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.

Return value

Single

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."

See also

Application Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.