ParagraphFormat.Space15 Method

Word Developer Reference

Formats the specified paragraphs with 1.5-line spacing.

Syntax

expression.Space15

expression   Required. A variable that represents a ParagraphFormat object.

Remarks

The exact spacing is determined by adding 6 points to the font size of the largest character in each paragraph.

You can also use the LineSpacingRule property to set the spacing of paragraphs. The following two statements are equivalent:

Visual Basic for Applications
  Selection.ParagraphFormat.Space15
Selection.ParagraphFormat.LineSpacingRule = wdLineSpace1pt5

Example

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

Visual Basic for Applications
  Selection.ParagraphFormat.Space15

See Also