expression.ShowFormatChanges
expression Required. An expression that returns a View object.
Example
This example hides the formatting changes made to the active document. This example assumes that formatting changes have been made to a document in which Track Changes is enabled.
Sub HideFormattingChanges()
ActiveWindow.View.ShowFormatChanges = False
End Sub