expression.PasteMergeFromPPT
expression Required. An expression that returns one of the objects in the Applies To list.
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