Hi,
Is there a way to prevent the RVAddictSpell3 component from putting the wavy lines under protected text (rvprModifyProtect)?
Cheers, Jim.
RVAddictSpell3 don't wavy line protected text
-
- Site Admin
- Posts: 17557
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Words are checked in TRichViewEdit.OnSpellingCheck event.
It has StyleNo parameter, so you can write:
It has StyleNo parameter, so you can write:
Code: Select all
Misspelled := not(rvprModifyProtect in Sender.Style.TextStyles[StyleNo].Protection) and not RVAddictSpell31.WordAcceptable(AWord);