Paragraphs.IncreaseSpacing Method (Word)
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.
Sub IncreaseParaSpacing()
Selection.Paragraphs.IncreaseSpacing
End Sub