Paragraph.Space1 Method (Word)
Single-spaces the specified paragraphs.
Syntax
expression .Space1
expression Required. A variable that represents a Paragraph 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 line spacing for a paragraph. The following two statements are equivalent:
ActiveDocument.Paragraphs(1).Space1
ActiveDocument.Paragraphs(1).LineSpacingRule = wdLineSpaceSingle
Example
This example changes the first paragraph in the active document to single spacing.
ActiveDocument.Paragraphs(1).Space1