Options.PasteMergeFromPPT property (Word)
True to merge text formatting when pasting from Microsoft PowerPoint. Read/write Boolean.
expression. PasteMergeFromPPT
expression A variable that represents a 'Options' object.
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
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.