Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
165
How to customize the UltraSpellChecker dialog.
posted

Hi.

I need to change the UI font of the UltraSpellChecker dialog. Is there any documentation to do this?

Parents
No Data
Reply
  • 20872
    Verified Answer
    Offline posted

    Hello gjorveno,

    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.

Children