Space1 Method
Applies To
Paragraph object, ParagraphFormat object, Paragraphs collection object.
Description
Single-spaces the specified paragraphs. The exact spacing is determined by the font size of the largest characters in each paragraph.
Syntax
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
See Also
Space15 method, Space2 method.
Example
This example changes the first paragraph in the active document to single spacing.
ActiveDocument.Paragraphs(1).Space1