Bookmark.GrammaticalErrors Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a ProofreadingErrors collection that represents the sentences that failed the grammar check on the Bookmark control.
public:
property Microsoft::Office::Interop::Word::ProofreadingErrors ^ GrammaticalErrors { Microsoft::Office::Interop::Word::ProofreadingErrors ^ get(); };
public Microsoft.Office.Interop.Word.ProofreadingErrors GrammaticalErrors { get; }
member this.GrammaticalErrors : Microsoft.Office.Interop.Word.ProofreadingErrors
Public ReadOnly Property GrammaticalErrors As ProofreadingErrors
Property Value
A ProofreadingErrors collection that represents the sentences that failed the grammar check on the Bookmark control.
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 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();
}
}
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
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).