New to Telerik UI for WPFStart a free 30-day trial

Represents a custom word dictionary utilized for spell checking in a document.

Definition

Namespace:Telerik.Windows.Documents.Proofing

Assembly:Telerik.Windows.Controls.RichTextBox.dll

Syntax:

C#
public interface ICustomWordDictionary : IWordDictionary

Derived Classes: RadIsolatedStorageCustomDictionaryRadNonPersistentCustomDictionary

Inherited Members IWordDictionary.ContainsWord(string)IWordDictionary.GetMetaphoneKey(string)IWordDictionary.GetWordsByMetaphoneKey(string)IWordDictionary.Words

Methods

Adds a new word to the custom word dictionary.

C#
void AddWord(string word)
Parameters:wordstring

The word to be added to the dictionary.

Clears all words from the custom word dictionary.

C#
void ClearWords()
Remarks:

This method resets the custom word dictionary, removing all previously added words.

Removes the specified word from the custom word dictionary.

C#
void RemoveWord(string word)
Parameters:wordstring

The word to be removed from the dictionary.

Events

C#
event EventHandler DataChanged