Skip to main content
A newer version of this page is available. .

ASPxSpellCheckerCustomDictionary.Dictionary Property

Gets a custom spellchecker dictionary.

Namespace: DevExpress.Web.ASPxSpellChecker

Assembly: DevExpress.Web.ASPxSpellChecker.v19.2.dll

Declaration

public SpellCheckerCustomDictionary Dictionary { get; }

Property Value

Type Description
SpellCheckerCustomDictionary

A SpellCheckerCustomDictionary class instance.

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