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

Concepts

ParagraphFormat Object

ParagraphFormat Object Members