Imports Infragistics.Win.UltraWinSpellChecker Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 'Change the color under spell errors to be blue Me.spellChecker.UnderlineSpellingErrorColor = Color.Blue 'Change the style of spelling errors to be double underlines. Me.spellChecker.UnderlineSpellingErrorStyle = UnderlineErrorsStyle.DoubleLine End Sub
using System.Windows.Forms; using Infragistics.Win.UltraWinSpellChecker; private void Form1_Load( object sender, EventArgs e ) { //Change the color under spell errors to be blue this.spellChecker.UnderlineSpellingErrorColor = Color.Blue; //Change the style of spelling errors to be double underlines. this.spellChecker.UnderlineSpellingErrorStyle = UnderlineErrorsStyle.DoubleLine; }