Paragraphs.DecreaseSpacing Method

Word Developer Reference

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

Syntax

expression.DecreaseSpacing

expression   Required. A variable that represents a Paragraphs collection.

Example

This example decreases the before and after spacing of a paragraph or selection of paragraphs by six points each time the procedure is run. If the before and after spacing are both zero, the procedure will do nothing.

Visual Basic for Applications
  Sub DecreaseParaSpacing()
    Selection.Paragraphs.DecreaseSpacing
End Sub

See Also