Bookmark.ReadabilityStatistics Property

Gets a ReadabilityStatistics collection that represents the readability statistics for the Bookmark control.

Namespace:  Microsoft.Office.Tools.Word
Assembly:  Microsoft.Office.Tools.Word (in Microsoft.Office.Tools.Word.dll)

Syntax

'Declaration
ReadOnly Property ReadabilityStatistics As ReadabilityStatistics
ReadabilityStatistics ReadabilityStatistics { get; }

Property Value

Type: ReadabilityStatistics
A ReadabilityStatistics collection that represents the readability statistics for the Bookmark control.

Examples

The following code example adds a Bookmark control with text to the first paragraph and then uses the ReadabilityStatistics property of the bookmark to display the number of words the bookmark contains in a message box.

This example is for a document-level customization.

Private Sub BookmarkReadabilityStatistics()

    Me.Paragraphs(1).Range.InsertParagraphBefore()
    Dim Bookmark1 As Microsoft.Office.Tools.Word.Bookmark = _
        Me.Controls.AddBookmark(Me.Paragraphs(1).Range, "Bookmark1")

    Bookmark1.Text = "This is sample bookmark text." 

    Dim Index As Object = 1
    MessageBox.Show("The number of words in bookmark1: " _
        & Bookmark1.ReadabilityStatistics.Item(Index).Value.ToString)

End Sub
private void BookmarkReadabilityStatistics()
{
    this.Paragraphs[1].Range.InsertParagraphBefore();
    Microsoft.Office.Tools.Word.Bookmark bookmark1 =
        this.Controls.AddBookmark(this.Paragraphs[1].Range,
        "bookmark1");
    bookmark1.Text = "This is sample bookmark text.";

    object index = 1;
    MessageBox.Show("The number of words in bookmark1: " +
        bookmark1.ReadabilityStatistics.get_Item(ref index).Value.ToString());
}

.NET Framework Security

See Also

Reference

Bookmark Interface

Microsoft.Office.Tools.Word Namespace