Application.DefaultLegalBlackline Property (Word)
True for Microsoft Word to compare and merge documents using the Legal blackline option in the Compare and Merge Documents dialog box. Read/write Boolean.
Syntax
expression .DefaultLegalBlackline
expression A variable that represents an Application object.
Example
This example enables Word's Legal blackline option for comparing and merging legal documents.
Sub CreateLegalBlackline()
Application.DefaultLegalBlackline = True
End Sub