Share via


ParagraphFormat.Space1 Method (Word)

Single-spaces the specified paragraphs.

Syntax

expression .Space1

expression Required. A variable that represents a ParagraphFormat object.

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

Selection.ParagraphFormat.Space1 
Selection.ParagraphFormat.LineSpacingRule = wdLineSpaceSingle

Example

This example changes the first paragraph in the active document to single spacing.

Selection.ParagraphFormat.Space1

See Also

Concepts

ParagraphFormat Object Members

ParagraphFormat Object