Hi.
I need to change the UI font of the UltraSpellChecker dialog. Is there any documentation to do this?
Hi,
I've a similar question - Can the Spell Check Dialog be localized?
Regards,
QSR
Hello gjorveno,
I am glad that I was able to help.
Please feel free to contact us if you need any other assistance while using Infragistics components.
Thanks, Danko.
Just what I was looking for. Love these easy fixes ;)
Most probably you could do something like the following before the Dialog is opened:
private void ultraSpellChecker1_SpellCheckDialogOpening(object sender, Infragistics.Win.UltraWinSpellChecker.SpellCheckDialogOpeningEventArgs e)
{
e.SpellCheckDialog.Font = new Font("Tahoma",19f, FontStyle.Bold);
}
Please feel free to let me know if there is anything else that I could help you with.