Paragraphs.IncreaseSpacing Method

Word Developer Reference

Increases the spacing before and after paragraphs in six-point increments.

Syntax

expression.IncreaseSpacing

expression   Required. A variable that represents a Paragraphs collection.

Example

This example increases the before and after spacing of a paragraph or selection of paragraphs by six points each time the procedure is run.

Visual Basic for Applications
  Sub IncreaseParaSpacing()
    Selection.Paragraphs.IncreaseSpacing
End Sub

See Also