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

SpellCheckerBase.UnhandledException Event

Occurs when an unhandled system exception fires.

Namespace: DevExpress.XtraSpellChecker

Assembly: DevExpress.SpellChecker.v19.1.Core.dll

Declaration

public event SpellCheckerUnhandledExceptionEventHandler UnhandledException

Event Data

The UnhandledException event's data class is SpellCheckerUnhandledExceptionEventArgs. The following properties provide information specific to this event:

Property Description
Exception Gets the exception which triggers the SpellCheckerBase.UnhandledException event.
Handled Gets or sets whether the exception should be propagated upwards.

Remarks

If an application tries to load several dictionaries of highly inflective languages (like Russian, Czech or Serbian), the system resources may be exhausted, resulting in a stalled application, and finally, in an unhandled exception. To handle this situation, subscribe to the UnhandledException event.

You can remove the problematic dictionary from the dictionary list and continue loading dictionaries.

See Also