Bookmark.CheckSpelling Method

Definition

Begins a spelling check for the document from the start of the Bookmark control to the end of the document.

public void CheckSpelling (ref object CustomDictionary, ref object IgnoreUppercase, ref object AlwaysSuggest, ref object CustomDictionary2, ref object CustomDictionary3, ref object CustomDictionary4, ref object CustomDictionary5, ref object CustomDictionary6, ref object CustomDictionary7, ref object CustomDictionary8, ref object CustomDictionary9, ref object CustomDictionary10);
abstract member CheckSpelling : obj * obj * obj * obj * obj * obj * obj * obj * obj * obj * obj * obj -> unit
Public Sub CheckSpelling (Optional ByRef CustomDictionary As Object, Optional ByRef IgnoreUppercase As Object, Optional ByRef AlwaysSuggest As Object, Optional ByRef CustomDictionary2 As Object, Optional ByRef CustomDictionary3 As Object, Optional ByRef CustomDictionary4 As Object, Optional ByRef CustomDictionary5 As Object, Optional ByRef CustomDictionary6 As Object, Optional ByRef CustomDictionary7 As Object, Optional ByRef CustomDictionary8 As Object, Optional ByRef CustomDictionary9 As Object, Optional ByRef CustomDictionary10 As Object)

Parameters

CustomDictionary
Object

Either an expression that returns a Dictionary or the file name of the custom dictionary.

IgnoreUppercase
Object

true if capitalization is ignored. If this argument is omitted, the current value of the IgnoreUppercase property is used.

AlwaysSuggest
Object

true for Microsoft Office Word to always suggest alternative spellings. If this argument is omitted, the current value of the SuggestSpellingCorrections property is used.

CustomDictionary2
Object

Either an expression that returns a Dictionary or the file name of an additional custom dictionary. You can specify as many as nine additional dictionaries.

CustomDictionary3
Object

Either an expression that returns a Dictionary or the file name of an additional custom dictionary. You can specify as many as nine additional dictionaries.

CustomDictionary4
Object

Either an expression that returns a Dictionary or the file name of an additional custom dictionary. You can specify as many as nine additional dictionaries.

CustomDictionary5
Object

Either an expression that returns a Dictionary or the file name of an additional custom dictionary. You can specify as many as nine additional dictionaries.

CustomDictionary6
Object

Either an expression that returns a Dictionary or the file name of an additional custom dictionary. You can specify as many as nine additional dictionaries.

CustomDictionary7
Object

Either an expression that returns a Dictionary or the file name of an additional custom dictionary. You can specify as many as nine additional dictionaries.

CustomDictionary8
Object

Either an expression that returns a Dictionary or the file name of an additional custom dictionary. You can specify as many as nine additional dictionaries.

CustomDictionary9
Object

Either an expression that returns a Dictionary or the file name of an additional custom dictionary. You can specify as many as nine additional dictionaries.

CustomDictionary10
Object

Either an expression that returns a Dictionary or the file name of an additional custom dictionary. You can specify as many as nine additional dictionaries.

Examples

The following code example adds a Bookmark control with text to the document and then checks the spelling of the text in the document, from the start of the bookmark to the end of the document.

This example is for a document-level customization.

private void BookmarkCheckSpelling()
{
    this.Paragraphs[1].Range.InsertParagraphBefore();
    Microsoft.Office.Tools.Word.Bookmark bookmark1 =
        this.Controls.AddBookmark(this.Paragraphs[1].Range,
        "bookmark1");
    bookmark1.Text = "This bookmark contains a mispellling";

    object IgnoreUppercase = true;
    object AlwaysSuggest = true;
    bookmark1.CheckSpelling(ref missing, ref IgnoreUppercase, 
        ref AlwaysSuggest, ref missing, ref missing, ref missing, 
        ref missing, ref missing, ref missing, ref missing, 
        ref missing, ref missing);
}
Private Sub BookmarkCheckSpelling()

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

    Bookmark1.Text = "This bookmark contains a mispellling"
    Bookmark1.CheckSpelling(IgnoreUppercase:=IgnoreUppercase, _
        AlwaysSuggest:=AlwaysSuggest)

End Sub

Remarks

If the Bookmark control contains errors, this method displays the Spelling and Grammar dialog box, with the Check grammar check box cleared.

Optional Parameters

For information on optional parameters, see Optional Parameters in Office Solutions.

Applies to