IncreaseSpacing Method

Microsoft Word Visual Basic

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