バージョン

UnderlineSpellingErrorStyle プロパティ

エディターでミススペルされたワードに下線を付ける方法を取得または設定します。
シンタックス
'宣言
 
Public Property UnderlineSpellingErrorStyle As UnderlineErrorsStyle
public UnderlineErrorsStyle UnderlineSpellingErrorStyle {get; set;}
使用例
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;
}
参照