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

SpellCheckerSettings.WordAdded Property

The event fires when a word is added to the custom dictionary.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v18.2.dll

Declaration

public WordAddedEventHandler WordAdded { get; set; }

Property Value

Type Description
WordAddedEventHandler

A WordAddedEventHandler delegate method to be called when a word is added to a custom dictionary.

Remarks

Use the WordAdded event to save the custom dictionary to an arbitrary location. Currently, the custom dictionary is stored in a session and cannot be shared between users. Collaboration can be established by providing two delegates - the WordAdded event handler to save a changed dictionary and the SpellCheckerSettings.CustomDictionaryLoading event to load the dictionary.

The added word is available via the WordAddedEventArgs.Word property.

See Also