_Worksheet.CheckSpelling Method
Checks the spelling of an object. This form has no return value; Microsoft Excel displays the Spelling dialog box.
Namespace: Microsoft.Office.Interop.Excel
Assembly: Microsoft.Office.Interop.Excel (in Microsoft.Office.Interop.Excel.dll)
Syntax
'Declaration
Sub CheckSpelling ( _
CustomDictionary As Object, _
IgnoreUppercase As Object, _
AlwaysSuggest As Object, _
SpellLang As Object _
)
'Usage
Dim instance As _Worksheet
Dim CustomDictionary As Object
Dim IgnoreUppercase As Object
Dim AlwaysSuggest As Object
Dim SpellLang As Object
instance.CheckSpelling(CustomDictionary, _
IgnoreUppercase, AlwaysSuggest, _
SpellLang)
void CheckSpelling(
Object CustomDictionary,
Object IgnoreUppercase,
Object AlwaysSuggest,
Object SpellLang
)
Parameters
CustomDictionary
Type: System.ObjectOptional Object. A string that indicates the file name of the custom dictionary to be examined if the word isn't found in the main dictionary. If this argument is omitted, the currently specified dictionary is used.
IgnoreUppercase
Type: System.ObjectOptional Object. True to have Microsoft Excel ignore words that are all uppercase. False to have Microsoft Excel check words that are all uppercase. If this argument is omitted, the current setting will be used.
AlwaysSuggest
Type: System.ObjectOptional Object. True to have Microsoft Excel display a list of suggested alternate spellings when an incorrect spelling is found. False to have Microsoft Excel wait for you to input the correct spelling. If this argument is omitted, the current setting will be used.
SpellLang
Type: System.ObjectOptional Object. The language of the dictionary being used. Can be one of the MsoLanguageID values used by the LanguageID property.
Remarks
Use this method to check headers, footers, and objects on a worksheet.