Options.PasteAdjustWordSpacing property (Word)

True if Microsoft 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.

Sub AdjustWordSpace() 
 With Options 
 If .PasteAdjustWordSpacing = False Then 
 .PasteAdjustWordSpacing = True 
 End If 
 End With 
End Sub

See also

Options Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.