| ||||||
![]() |
||||||||||||||||||||
Spell Checker is an easy to use REALbasic Class that adds spell checking capability to your REALbasic application cross-platform! Provides spell checking of English words, a 150,000 word dictionary, and simple dictionary management (add, delete words). Other languages can EASILY be supported, contact tech support for additionial information regarding other languages. // // REALbasic Sample Use Dim cResults as new clsSpellCheckResult app.SpellChecker().Lock() app.SpellChecker().Clear() app.SpellChecker().Content() = strSource app.SpellChecker().Run(cResults) app.SpellChecker().Unlock() for i = 0 to cResults.GoodWords() lstResults.AddRow "+" + cResults.GoodWord(i) next for i = 0 to cResults.BadWords() lstResults.AddRow "-" + cResults.BadWord(i) next |
||||||||||||||||||||
|
||||||||||||||||||||
| ||||||||||||||||||