DefaultLegalBlackline Property

Microsoft Word Visual Basic

DefaultLegalBlackline Property

       

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.

expression.DefaultLegalBlackline

expression   Required. An expression that returns one of the objects in the Applies To list.

Remarks

For more information about the Legal blackline option, see About comparing and merging documents and Compare documents with the Legal blackline option.

Example

This example enables Word's Legal blackline option for comparing and merging legal documents.

Sub CreateLegalBlackline()
    Application.DefaultLegalBlackline = True
End Sub