ASPxSpellCheckerCustomDictionary.Dictionary Property
In This Article
Gets a custom spellchecker dictionary.
Namespace: DevExpress.Web.ASPxSpellChecker
Assembly: DevExpress.Web.ASPxSpellChecker.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public SpellCheckerCustomDictionary Dictionary { get; }
#Property Value
Type | Description |
---|---|
Spell |
A Spell |
#Remarks
The custom cictionary saves its words to a Session variable. By design, the custom dictionary content isn’t physically saved to a file on a disk. This has been implemented intentionally, to provide each user with a unique instance of the custom dictionary. If necessary, you can set the Dictionary’s WebDictionary.CacheKey property. In this case, you should be able to access the dictionary using the Session[Dicitonary.CacheKey] object, and then save it for future use.
See Also