PasteMergeFromPPT Property

Microsoft Word Visual Basic

PasteMergeFromPPT Property

       

True to merge text formatting when pasting from Microsoft PowerPoint. Read/write Boolean.

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