SpellCheckerDictionaryLanguage Property |
The language of the dictionary to be used for spellchecking. It usually is the same as the corresponding TDF file (without the extension).
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic string DictionaryLanguage { get; set; }
Public Property DictionaryLanguage As String
Get
Set
public:
property String^ DictionaryLanguage {
String^ get ();
void set (String^ value);
}
member DictionaryLanguage : string with get, set
Property Value
Type:
StringThe default is
en-US
Remarks
To spellcheck in German you have to have de-DE.tdf inside your dictionary folder, and set DictionaryLanguage to "de-DE"
C#:
spellChecker.DictionaryLanguage = "de-DE";
VB.NET
spellChecker.DictionaryLanguage = "de-DE"
See Also