Space1 Method

Microsoft Word Visual Basic

Space1 Method

       

Single-spaces the specified paragraphs. The exact spacing is determined by the font size of the largest characters in each paragraph.

expression.Space1

expression   Required. An expression that returns a Paragraph, Paragraphs, or ParagraphFormat object.

Remarks

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