[scriptable, uuid(6088a862-1229-11d9-941d-c035b2e390c6)]
Methods
Adds a word to the current personal dictionary. @see nsISpellChecker::AddWordToDictionary
Check a given word. In spite of the name, this function checks the word you give it, returning true if the word is misspelled. If the word is misspelled, it will compute the suggestions which you can get from GetSuggestedWord(). @see nsISpellChecker::CheckCurrentWord
Like CheckCurrentWord, checks the word you give it, returning true if it's misspelled. This is faster than CheckCurrentWord because it does not compute any suggestions. Watch out: this does not clear any suggestions left over from previous calls to CheckCurrentWord, so there may be suggestions, but they will be invalid.
Retrieves a list of the currently available dictionaries. The strings will typically be language IDs, like "en-US". @see mozISpellCheckingEngine::GetDictionaryList
When interactively spell checking the document, this will return the value of the next word that is misspelled. This also computes the suggestions which you can get by calling GetSuggestedWord. @see nsISpellChecker::GetNextMisspelledWord
Fills an internal list of words added to the personal dictionary. These words can be retrieved using GetPersonalDictionaryWord() @see nsISpellChecker::GetPersonalDictionary @see GetPersonalDictionaryWord
Used after you call GetPersonalDictionary() to iterate through all the words added to the personal dictionary. Will return the empty string when there are no more words.
Used to get suggestions for the last word that was checked and found to be misspelled. The first call will give you the first (best) suggestion. Subsequent calls will iterate through all the suggestions, allowing you to build a list. When there are no more suggestions, an empty string will be returned. @see nsISpellChecker::GetSuggestedWord
Turns on the spell checker for the given editor. enableSelectionChecking set means that we only want to check the current selection in the editor, (this controls the behavior of GetNextMisspelledWord). For inline spellchecking, we don't care about this.
Removes a word from the current personal dictionary. @see nsISpellChecker::RemoveWordFromPersonalDictionary
Use when modaly checking the document to replace a word. @see nsISpellChecker::CheckCurrentWord
Call this to free up the spell checking object. It will also save the current selected language as the default for future use. If you have called CanSpellCheck but not InitSpellChecker, you can still call this function to clear the cached spell check object, and no preference saving will happen.
Used to filter the content (for example, to skip blockquotes in email from spellchecking. Call this before calling InitSpellChecker; calling it after initialization will have no effect. @see nsITextServicesDocument::setFilter
Compare to:
