ShowHighlight Property
Applies To
View object.
Description
True if highlight formatting is displayed and printed with a document. Read/write Boolean.
See Also
HighlightColorIndex property.
Example
This example toggles the display of highlighting in the active document.
ActiveWindow.View.ShowHighlight = Not ActiveWindow.View.ShowHighlight
This example prints the active document without highlight formatting.
With ActiveDocument
.ActiveWindow.View.ShowHighlight = False
.PrintOut
End With