Options.PasteAdjustTableFormatting Property (Word)
True if Microsoft Word automatically adjusts the formatting of tables when cutting and pasting selections. Read/write Boolean.
Syntax
expression .PasteAdjustTableFormatting
expression A variable that represents a Options object.
Example
This example sets Word to automatically adjust the formatting of tables when cutting and pasting if the option has been disabled.
Sub AdjustTableFormatting()
With Options
If .PasteAdjustTableFormatting = False Then
.PasteAdjustTableFormatting = True
End If
End With
End Sub