LinesToPoints Method
Applies To
Application object, Global object.
Description
Converts a measurement from lines to points (1 line = 12 points). Returns the converted measurement as a Single.
Syntax
expression.LinesToPoints(Lines)
expression Optional. An expression that returns an Application object.
Lines Required Single. The line value to be converted to points.
See Also
CentimetersToPoints method, InchesToPoints method, MillimetersToPoints method, PicasToPoints method.
Example
This example sets the paragraph line spacing in the selection to three lines.
With Selection.ParagraphFormat
.LineSpacingRule = wdLineSpaceMultiple
.LineSpacing = LinesToPoints(3)
End With