Options.ShowReadabilityStatistics Property

Word Developer Reference

True if Microsoft Word displays a list of summary statistics, including measures of readability, when it has finished checking grammar. Read/write Boolean.

Syntax

expression.ShowReadabilityStatistics

expression   An expression that returns an Options object.

Example

This example sets Word to show readability statistics, and then it checks the spelling and grammar in the active document.

Visual Basic for Applications
  Options.ShowReadabilityStatistics = True
ActiveDocument.CheckGrammar

This example returns the current status of the Show readability statistics option on the Spelling & Grammar tab in the Options dialog box (Tools menu).

Visual Basic for Applications
  temp = Options.ShowReadabilityStatistics

See Also