Bookmark.ReadabilityStatistics Property (2007 System)

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

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

Syntax

'Declaration
<BrowsableAttribute(False)> _
Public ReadOnly Property ReadabilityStatistics As ReadabilityStatistics
'Usage
Dim instance As Bookmark 
Dim value As ReadabilityStatistics 

value = instance.ReadabilityStatistics
[BrowsableAttribute(false)]
public ReadabilityStatistics ReadabilityStatistics { get; }
[BrowsableAttribute(false)]
public:
property ReadabilityStatistics^ ReadabilityStatistics {
    ReadabilityStatistics^ get ();
}
public function get ReadabilityStatistics () : ReadabilityStatistics

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 Class

Bookmark Members

Microsoft.Office.Tools.Word Namespace