バージョン

ShowSpellCheck(Form,Object) メソッド

指定されたオブジェクトに対して非モーダルにスペル チェック ダイアログを表示し、表示されたスペル チェック ダイアログへの参照を返します。
シンタックス
'宣言
 
Public Overloads Function ShowSpellCheck( _
   ByVal owner As Form, _
   ByVal spellCheckTarget As Object _
) As Form
public Form ShowSpellCheck( 
   Form owner,
   object spellCheckTarget
)

パラメータ

owner
スペル チェック ダイアログを所有するフォーム。
spellCheckTarget
スペル チェックされているオブジェクト。これはスペル チェッカによってサポートされるタイプでなければなりません。

戻り値の型

スペル チェック ダイアログへの参照または SpellCheckDialogOpening イベントがキャンセルされた場合は null。
使用例
Imports Infragistics.Win.UltraWinSpellChecker

Private Sub btSpellCheckNonModally_Click(ByVal sender As Object, ByVal e As EventArgs) Handles btSpellCheckNonModally.Click
	'Show the spell check dialog for the rich text box non-modally
	Me.ultraSpellChecker1.ShowSpellCheck(Me.richTextBox1)
End Sub
using System.Windows.Forms;
using Infragistics.Win.UltraWinSpellChecker;

private void btSpellCheckNonModally_Click(object sender, EventArgs e)
{
	//Show the spell check dialog for the rich text box non-modally
	this.ultraSpellChecker1.ShowSpellCheck( this.rtbSpellChecked );
}
参照