ParagraphFormat.Space2 method (Word)

Double-spaces the specified paragraphs.

Syntax

expression. Space2

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

Remarks

The exact spacing is determined by adding 12 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. For example, the following two statements are equivalent:

Selection.ParagraphFormat.Space2 
Selection.ParagraphFormat.LineSpacingRule = wdLineSpaceDouble

Example

This example changes the first paragraph in the selection to double spacing.

Selection.ParagraphFormat.Space2

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.