Expand Minimize
This topic has not yet been rated - Rate this topic

Options.PasteAdjustWordSpacing Property

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

Syntax

expression.PasteAdjustWordSpacing

expression   A variable that represents a Options object.

Example

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

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



Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.