April 2006
Beginner
1114 pages
98h 16m
English
Application.SpellingOptions
Returns a SpellingOptions object that you can use to control how Excel performs spellchecking. The following code displays the main spelling option settings:
Sub TestSpellingOptions( )
With Application.SpellingOptions
Debug.Print .DictLang
Debug.Print .IgnoreCaps
Debug.Print .IgnoreMixedDigits
Debug.Print .IgnoreFileNames
Debug.Print .SuggestMainOnly
End With
End SubRead now
Unlock full access