Share via


Paragraphs.Space1 Method (Word)

Single-spaces the specified paragraphs.

Syntax

expression .Space1

expression Required. A variable that represents a Paragraphs collection.

Remarks

The exact spacing is determined by the font size of the largest characters in each paragraph.

You can also use the LineSpacingRule property to set paragraph spacing. The following two statements are equivalent:

ActiveDocument.Paragraphs.Space1 
ActiveDocument.Paragraphs.LineSpacingRule = wdLineSpaceSingle

Example

This example changes all paragraphs in the active document to single spacing.

ActiveDocument.Paragraphs.Space1

See Also

Concepts

Paragraphs Collection Object

Paragraphs Object Members