Options.PasteMergeLists Property

Word Developer Reference

True to merge the formatting of pasted lists with surrounding lists. Read/write Boolean.

Syntax

expression.PasteMergeLists

expression   A variable that represents a Options object.

Example

This example sets Microsoft Word to automatically merge list formatting with surrounding lists if the option has been disabled.

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

See Also