Share via


Paragraph.Space2 Method

Word Developer Reference

Double-spaces the specified paragraphs.

Syntax

expression.Space2

expression   Required. A variable that represents a Paragraph 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 line spacing for a paragraph. The following two statements are equivalent:

Visual Basic for Applications
  ActiveDocument.Paragraphs(1).Space2
ActiveDocument.Paragraphs(1).LineSpacingRule = wdLineSpaceDouble

Example

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

Visual Basic for Applications
  Selection.Paragraphs(1).Space2

See Also