ReadabilityStatistics Property
Applies To
Document object, Range object.
Description
Returns a ReadabilityStatistics collection that represents the readability statistics for the specified document or range. Read-only.
See Also
ShowReadabilityStatistics property.
Example
This example displays each readability statistic, along with its value, for document one.
For Each rs In Documents(1).ReadabilityStatistics
Msgbox rs.Name & " - " & rs.Value
Next rs