Bookmark.GrammaticalErrors Property

Gets a ProofreadingErrors collection that represents the sentences that failed the grammar check on the Bookmark control.

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

Syntax

'Declaration
ReadOnly Property GrammaticalErrors As ProofreadingErrors
ProofreadingErrors GrammaticalErrors { get; }

Property Value

Type: Microsoft.Office.Interop.Word.ProofreadingErrors
A ProofreadingErrors collection that represents the sentences that failed the grammar check on the Bookmark control.

Remarks

There can be more than one error per sentence.

If there are no grammatical errors, the Count property for the ProofreadingErrors object returned by the GrammaticalErrors property returns 0 (zero).

Examples

The following code example adds a Bookmark control with text to the first paragraph and then runs the grammar checker if there are grammatical errors in the bookmark.

This example is for a document-level customization.

Private Sub BookmarkGrammaticalErrors()
    Me.Paragraphs(1).Range.InsertParagraphBefore()
    Dim Bookmark1 As Microsoft.Office.Tools.Word.Bookmark = _
        Me.Controls.AddBookmark(Me.Paragraphs(1).Range, "Bookmark1")
    Bookmark1.Text = "This bookmark contains an grammatical error." 

    If Bookmark1.GrammaticalErrors.Count > 0 Then
        Bookmark1.CheckGrammar()
    End If 

End Sub
private void BookmarkGrammaticalErrors()
{
    this.Paragraphs[1].Range.InsertParagraphBefore();
    Microsoft.Office.Tools.Word.Bookmark bookmark1 =
        this.Controls.AddBookmark(this.Paragraphs[1].Range,
        "bookmark1");
    bookmark1.Text = "This bookmark contains an grammatical error.";

    if (bookmark1.GrammaticalErrors.Count > 0)
    {
        bookmark1.CheckGrammar();
    }
}

.NET Framework Security

See Also

Reference

Bookmark Interface

Microsoft.Office.Tools.Word Namespace