バージョン

CheckWord メソッド

ワードをスペル チェックして、チェックの結果とともに WordCheckResult インスタンスを返します。
シンタックス
'宣言
 
Public Function CheckWord( _
   ByVal word As String _
) As WordCheckResult
public WordCheckResult CheckWord( 
   string word
)

パラメータ

word
スペル チェックするワード。
例外
例外解説
System.ArgumentException 指定されたワードは単一のワードではありません。
使用例
Imports Infragistics.Win.UltraWinSpellChecker

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
	Dim word As String = "speeling"

	'Check the word for spelling
	Dim result As WordCheckResult = Me.spellChecker.CheckWord(word)

	If (result.SpelledCorrectly) Then
		MessageBox.Show("The word: """ + word + """ is spelled correctly.")
	Else
		MessageBox.Show("The word: """ + word + """ is spelled incorrectly.")
	End If
End Sub
using System.Windows.Forms;
using Infragistics.Win.UltraWinSpellChecker;

private void button1_Click( object sender, EventArgs e )
{
	string word = "speeling";

	//Check the word for spelling
	WordCheckResult result = this.spellChecker.CheckWord( word );

	if ( result.SpelledCorrectly )
		MessageBox.Show( "The word: \"" + word + "\" is spelled correctly." );
	else
		MessageBox.Show( "The word: \"" + word + "\" is spelled incorrectly." );
}
参照