Skip to content

Latest commit

 

History

History
47 lines (30 loc) · 1017 Bytes

Word.Options.PasteAdjustWordSpacing.md

File metadata and controls

47 lines (30 loc) · 1017 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Options.PasteAdjustWordSpacing property (Word)
vbawd10.chm162988461
vbawd10.chm162988461
Word.Options.PasteAdjustWordSpacing
28c20e9a-8ebe-323f-0fa5-63c6310e988e
06/08/2017
medium

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

[!includeSupport and feedback]