Application.CentimetersToPoints method (Word)
Converts a measurement from centimeters to points (1 cm = 28.35 points). Returns the converted measurement as a Single.
expression. CentimetersToPoints
( _Centimeters_
)
expression A variable that represents an Application object.
Name | Required/Optional | Data type | Description |
---|---|---|---|
Centimeters | Required | Single | The centimeter value to be converted to points. |
This example adds a centered tab stop to all the paragraphs in the selection. The tab stop is positioned at 1.5 centimeters from the left margin.
Selection.Paragraphs.TabStops.Add _
Position:=Application.CentimetersToPoints(1.5), _
Alignment:=wdAlignTabCenter
This example sets a first-line indent of 2.5 centimeters for the first paragraph in the active document.
ActiveDocument.Paragraphs(1).FirstLineIndent = _
Application.CentimetersToPoints(2.5)
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.