Imports Infragistics.Win.UltraWinSpellChecker ... Me.UltraSpellChecker1.Mode = SpellCheckingMode.None
You may wish to give the end user the option of turning off a certain subset of spell checking functionality. It is possible to not have the WinSpellChecker™ check spelling as you type or when a text box loses focus. Use the following code to turn off this functionality.
In Visual Basic:
Imports Infragistics.Win.UltraWinSpellChecker ... Me.UltraSpellChecker1.Mode = SpellCheckingMode.None
In C#:
using Infragistics.Win.UltraWinSpellChecker; ... this.ultraSpellChecker1.Mode = SpellCheckingMode.None;