ParagraphFormat.Space2 Method

Word Developer Reference

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:

Visual Basic for Applications
  Selection.ParagraphFormat.Space2
Selection.ParagraphFormat.LineSpacingRule = wdLineSpaceDouble

Example

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

Visual Basic for Applications
  Selection.ParagraphFormat.Space2

See Also