Space15 Method

Applies To

Paragraph object, ParagraphFormat object, Paragraphs collection object.

Description

Formats the specified paragraphs with 1.5-line spacing. The exact spacing is determined by adding 6 points to the font size of the largest character in each paragraph.

Syntax

expression.Space15

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

Remarks

The following two statements are equivalent:

ActiveDocument.Paragraphs(1).Space15
ActiveDocument.Paragraphs(1).LineSpacingRule = wdLineSpace1pt5
See Also

Space1 method, Space2 method.

Example

This example changes the first paragraph in the active document to 1.5-line spacing.

ActiveDocument.Paragraphs(1).Space15