ParagraphFormat.Space15 method (Word)

Formats the specified paragraphs with 1.5-line spacing.

Syntax

expression. Space15

expression Required. A variable that represents a 'ParagraphFormat' object.

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 the spacing of paragraphs. The following two statements are equivalent:

Selection.ParagraphFormat.Space15 
Selection.ParagraphFormat.LineSpacingRule = wdLineSpace1pt5

Example

This example changes the first paragraph in the active document to 1.5-line spacing.

Selection.ParagraphFormat.Space15

See also

ParagraphFormat Object

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.