Options.PasteMergeLists property (Word)

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.

Sub UseSmartStyle() 
 With Options 
 If .PasteMergeLists = False Then 
 .PasteMergeLists = True 
 End If 
 End With 
End Sub

See also

Options Object

Support and feedback

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.