Options.PasteMergeFromPPT Property (Word)
True to merge text formatting when pasting from Microsoft PowerPoint. Read/write Boolean.
Syntax
expression .PasteMergeFromPPT
expression A variable that represents a Options object.
Example
This example sets Microsoft Word to automatically merge text formatting when pasting content from PowerPoint if the option has been disabled.
Sub AdjustPPTFormatting()
With Options
If .PasteMergeFromPPT = False Then
.PasteMergeFromPPT = True
End If
End With
End Sub