バージョン

UserDictionary プロパティ

ユーザー辞書へのパスを取得または設定します。
シンタックス
'宣言
 
Public Property UserDictionary As String
public string UserDictionary {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;
}
参照