Skip to content

Latest commit

 

History

History
63 lines (34 loc) · 1.23 KB

Word.Application.MillimetersToPoints.md

File metadata and controls

63 lines (34 loc) · 1.23 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.MillimetersToPoints method (Word)
vbawd10.chm158335348
vbawd10.chm158335348
Word.Application.MillimetersToPoints
13cf2786-709a-d473-0b6d-4fddabb465b8
06/08/2017
medium

Application.MillimetersToPoints method (Word)

Converts a measurement from millimeters to points (1 mm = 2.85 points). Returns the converted measurement as a Single.

Syntax

expression. MillimetersToPoints( _Millimeters_ )

expression A variable that represents an Application object. Optional.

Parameters

Name Required/Optional Data type Description
Millimeters Required Single The millimeter value to be converted to points.

Return value

Single

Example

This example sets the hyphenation zone in the active document to 8.8 millimeters.

ActiveDocument.HyphenationZone = MillimetersToPoints(8.8)

This example expands the spacing of the selected characters to 2.8 points.

Selection.Font.Spacing = MillimetersToPoints(1)

See also

Application Object

[!includeSupport and feedback]