Paragraphs.Space2 Method

Word Developer Reference

Double-spaces the specified paragraphs. .

Syntax

expression.Space2

expression   Required. A variable that represents a Paragraphs collection.

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

Visual Basic for Applications
  ActiveDocument.Paragraphs.Space2
ActiveDocument.Paragraphs.LineSpacingRule = wdLineSpaceDouble

Example

This example changes all selected paragraphs to double spacing.

Visual Basic for Applications
  Selection.Paragraphs.Space2

See Also