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

DictionaryBase.DictionaryLoaded Event

Occurs when a dictionary is loaded.

Namespace: DevExpress.XtraSpellChecker

Assembly: DevExpress.SpellChecker.v18.2.Core.dll

Declaration

public event EventHandler DictionaryLoaded

Event Data

The DictionaryLoaded event's data class is EventArgs.

Remarks

Loading dictionaries is a time-consuming process. You can make it user friendly and maintainable, by handling this event and providing visual indication.

After each dictionary is successfully loaded, the DictionaryLoaded event occurs.

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 SpellCheckerBase.UnhandledException event.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the DictionaryLoaded event.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

Implements

See Also