CentimetersToPoints Method Example
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:=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 = _
CentimetersToPoints(2.5)