Global.LinesToPoints method (Word)
Converts a measurement from lines to points (1 line = 12 points). Returns the converted measurement as a Single.
Syntax
expression. LinesToPoints
( _Lines_
)
expression A variable that represents a 'Global' object. Optional.
Parameters
Name | Required/Optional | Data type | Description |
---|---|---|---|
Lines | Required | Single | The line value to be converted to points. |
Return value
Single
Example
This example sets the paragraph line spacing in the selection to three lines.
With Selection.ParagraphFormat
.LineSpacingRule = wdLineSpaceMultiple
.LineSpacing = LinesToPoints(3)
End With
See also
Support and feedback
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.