バージョン

Dictionary プロパティ

辞書ファイルへのパスを取得または設定します。
シンタックス
'宣言
 
Public Property Dictionary As String
public string Dictionary {get; set;}
解説
この辞書にはすべてのデフォルトの正しくスペルされた言語のワードが含まれます。このプロパティが設定されない場合、英語辞書がデフォルトで使用されます。
使用例
Imports Infragistics.Win.UltraWinSpellChecker

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

	'Make the spell checker use the spanish dictionary.
	Me.spellChecker.Dictionary = "C:\es-spanish-v2-whole.dict"

	'Make the spell checker use a custom user dictionary.
	Me.spellChecker.UserDictionary = "C:\MyUserDictionary.txt"

	'The language parser should match the dictionary type.
	Me.spellChecker.SpellOptions.LanguageParser = LanguageType.Spanish

End Sub
using System.Windows.Forms;
using Infragistics.Win.UltraWinSpellChecker;

private void Form1_Load( object sender, EventArgs e )
{
	//Make the spell checker use the spanish dictionary.
	this.spellChecker.Dictionary = @"C:\es-spanish-v2-whole.dict";
			
	//Make the spell checker use a custom user dictionary.
	this.spellChecker.UserDictionary = @"C:\MyUserDictionary.txt";

	//The language parser should match the dictionary type.
	this.spellChecker.SpellOptions.LanguageParser = LanguageType.Spanish;
}
参照