Paragraphs.Space15 Method (Word)
Formats the specified paragraphs with 1.5-line spacing.
Syntax
expression .Space15
expression Required. A variable that represents a Paragraphs collection.
Remarks
The exact spacing is determined by adding 6 points to the font size of the largest character in each paragraph.
You can also use the LineSpacingRule property to set paragraph spacing. The following two statements are equivalent:
ActiveDocument.Paragraphs.Space15
ActiveDocument.Paragraphs.LineSpacingRule = wdLineSpace1pt5
Example
This example changes all paragraphs in the active document to 1.5-line spacing.
ActiveDocument.Paragraphs.Space15