I am providing a user toggle to turn designmode on/off (which works just fine)
I would also like to temporarily turn off spell checking as I think it should also toggle with designmode on/off.
I tried Chromium1.SpellChecking := Enabled .... it does not seem to do anything. Any tips?
Disclosure Statement: This site contains affiliate links, which means that I may receive a commission if you make a purchase using these links. As an eBay Partner, I earn from qualifying purchases.
SpellChecking
- salvadordf
- Posts: 4572
- Joined: Thu Feb 02, 2017 12:24 pm
- Location: Spain
- Contact:
Re: SpellChecking
Hi,
The value of the TChromium.SpellChecking property is only used when TChromium updates the browser preferences.
This happens every time the user loads a new URL or when the application calls TChromium.UpdatePreferences.
The value of the TChromium.SpellChecking property is only used when TChromium updates the browser preferences.
This happens every time the user loads a new URL or when the application calls TChromium.UpdatePreferences.
Re: SpellChecking
As always .... thank you. This works just fine.
Chromium1.SpellChecking := Enabled;
Chromium1.UpdatePreferences;
Chromium1.SpellChecking := Enabled;
Chromium1.UpdatePreferences;