![]() |
|
hendrickson software components | |
|
![]() Easy to use REAL Studio (REALbasic) Class to spell check text. For Macintosh, Windows, and Linux REAL Studio developers. |
|||||||||||
Easily spell check text cross-platform from REAL Studio (REALbasic). Comes with 144399 word English dictionary to which the Spell Checker Class can add or delete words. Other languages can be easily supported by importing the language's word list to a new dictionary. // // 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 // // REALbasic Add, Delete Word if app.SpellChecker().AddWord(DictionaryEditField.Text) then if not app.SpellChecker().DeleteWord(DictionaryEditField.Text) then // do something... end if end if REAL Studio (REALbasic) Versions Operating Systems |
|||||||||||
![]() |
|||||||||||
![]() |
|||||||||||
|
|||||||||||