Document.ReadabilityStatistics property (Word)

Returns a ReadabilityStatistics collection that represents the readability statistics for the specified document or range. Read-only.

Syntax

expression. ReadabilityStatistics

expression A variable that represents a Document object.

Remarks

For information about returning a single member of a collection, see Returning an object from a collection.

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

See also

Document Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.