Page 1 of 1

List of Misspelled Words

Posted: Sun Aug 22, 2021 11:30 am
by standay
Hi Sergey,

I need to get a list of misspelled words in an rve. Right now I've set up a stringlist and I populate it in rveSpellingCheck. This is working but I was wondering if there's already a list of misspelled words somewhere in the rve code that I could use.

Thanks

Stan

Re: List of Misspelled Words

Posted: Mon Aug 23, 2021 12:13 pm
by Sergey Tkachenko
There is no list of misspelled words.
It is possible to go through the document and check places where misspelled words are underlined, but probably building list in OnSpellingCheck is preferrable.

Re: List of Misspelled Words

Posted: Mon Aug 23, 2021 8:20 pm
by standay
Thanks Sergey,

I decided to use code you pointed to in this post:

https://www.trichview.com/forums/viewto ... rate+words

I'm still using a string list, but checking and rechecking for misspelled words directly rather than building a list in rveSpellingCheck.

Stan