Click or drag to resize
KaxEditorLanguages Property
Gets the collection containing the available languages for spellchecking.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
[PersistenceModeAttribute(PersistenceMode.InnerProperty)]
public SpellCheckerLanguageCollection Languages { get; }

Property Value

Type: SpellCheckerLanguageCollection
A NameValueCollection containing the available languages for spellchecking. Default value is empty NameValueCollection.
Remarks
KaxEditor has integrated support for the multi-language mode of KaxSpell. When working with content in different languages you can select the proper spellchecking dictionary from a dropdown button on the KaxEditor toolbar.
Examples
This example demonstrates how to enable spellchecking for English, French and German languages in KaxEditor spellchecker.
private void Page_Load(object sender, EventArgs e)
{
    KaxEditor1.Languages.Add("en-US", "English");
    KaxEditor1.Languages.Add("fr-FR", "French");
    KaxEditor1.Languages.Add("de-DE", "German");
}
See Also