Skip to content

Latest commit

 

History

History
58 lines (34 loc) · 1.22 KB

Word.Global.PixelsToPoints.md

File metadata and controls

58 lines (34 loc) · 1.22 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Global.PixelsToPoints method (Word)
vbawd10.chm163119490
vbawd10.chm163119490
Word.Global.PixelsToPoints
671b06c5-c54f-417f-557b-53ea9fee1480
06/08/2017
medium

Global.PixelsToPoints method (Word)

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

Syntax

expression. PixelsToPoints( _Pixels_ , _fVertical_ )

expression Required. A variable that represents a 'Global' object.

Parameters

Name Required/Optional Data type Description
Pixels Required Single The pixel value to be converted to points.
fVertical Optional Variant True to convert vertical pixels; False to convert horizontal pixels.

Return value

Single

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

See also

Global Object

[!includeSupport and feedback]