Space2 Method
Applies To
Paragraph object, ParagraphFormat object, Paragraphs collection object.
Description
Double-spaces the specified paragraphs. The exact spacing is determined by adding 12 points to the font size of the largest character in each paragraph.
Syntax
expression.Space2
expression Required. An expression that returns a Paragraph, Paragraphs, or ParagraphFormat object.
Remarks
The following two statements are equivalent:
ActiveDocument.Paragraphs(1).Space2
ActiveDocument.Paragraphs(1).LineSpacingRule = wdLineSpaceDouble
See Also
Space1 method, Space15 method.
Example
This example changes the first paragraph in the selection to double spacing.
Selection.Paragraphs(1).Space2