Options.PasteMergeFromPPT Property

Word Developer Reference

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.

Visual Basic for Applications
  Sub AdjustPPTFormatting()
    With Options
        If .PasteMergeFromPPT = False Then
            .PasteMergeFromPPT = True
        End If
    End With
End Sub

See Also