Bookmark.GrammaticalErrors Property (2007 System)

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.v9.0 (in Microsoft.Office.Tools.Word.v9.0.dll)

Syntax

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

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

Property Value

Type: 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 Class

Bookmark Members

Microsoft.Office.Tools.Word Namespace