Options.ShowFormatError Property

Word Developer Reference

True for Microsoft Word to mark inconsistencies in formatting by placing a squiggly underline beneath text formatted similarly to other formatting that is used more frequently in a document. Read/write Boolean.

Syntax

expression.ShowFormatError

expression   An expression that returns an Options object.

Example

This example enables Word to keep track of formatting in documents but does not display a squiggly underline beneath text.

Visual Basic for Applications
  Sub ShowFormatErrors()
With Options
    .FormatScanning = True  'Enables keeping track of formatting
    .<strong class="bterm">ShowFormatError</strong> = False
End With

End Sub

See Also