Options.PasteAdjustParagraphSpacing Property

Word Developer Reference

True if Microsoft Office Word automatically adjusts the spacing of paragraphs when cutting and pasting selections. Read/write Boolean.

Syntax

expression.PasteAdjustParagraphSpacing

expression   A variable that represents a Options object.

Example

This example sets Word to automatically adjust the spacing of paragraphs when cutting and pasting selections if the option has been disabled.

Visual Basic for Applications
  Sub AdjustParaSpace()
    With Options
        If .PasteAdjustParagraphSpacing = False Then
            .PasteAdjustParagraphSpacing = True
        End If
    End With
End Sub

See Also