IncreaseSpacing Method

Microsoft Word Visual Basic

IncreaseSpacing Method

       

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

expression.IncreaseSpacing

expression   Required. An expression that returns a Paragraphs object.

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