KaxEditorLanguages Property |
Gets the collection containing the available languages for spellchecking.
Namespace: Kettic.AspNet.ControlsAssembly: 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; }
<PersistenceModeAttribute(PersistenceMode.InnerProperty)>
Public ReadOnly Property Languages As SpellCheckerLanguageCollection
Get
public:
[PersistenceModeAttribute(PersistenceMode::InnerProperty)]
property SpellCheckerLanguageCollection^ Languages {
SpellCheckerLanguageCollection^ get ();
}
[<PersistenceModeAttribute(PersistenceMode.InnerProperty)>]
member Languages : SpellCheckerLanguageCollection with 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");
}
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
KaxEditor1.Languages.Add("en-US", "English");
KaxEditor1.Languages.Add("fr-FR", "French");
KaxEditor1.Languages.Add("de-DE", "German");
End Sub
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
See Also