SpellingChecker REALbasic Plugin

SpellingChecker.Ignore Method

Once a word faulty word has been found then this method can be called to add the faulty word to the currently selected Ignore list.

After calling ignore then if it is desired to continue spell checking then call the Check function again. (See the example project for better reference).

Ignore()

Parameters

Remarks

There are two types of ignore lists, the default which is Application wide. That is the ignore list which you always are using after constructing a instance of the SpellChecker class is the Application Ignore list.

Even if two instances are constructed of the SpellingChecker class then by default both will point to the same ignore list.

The CurrentIgnoreListID property and the GetUniqueIgnoreList function can be used to assign custom non application wide ignore lists to the class instance. Such ignore lists are useful for example if each document in the application should have its own ignore list.

See Also

SpellingChecker Class