Interface
ICustomWordDictionary

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:

cs-api-definition
public interface ICustomWordDictionary : IWordDictionary

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

Methods

AddWord(string)

Adds a new word to the custom word dictionary.

Declaration

cs-api-definition
void AddWord(string word)

Parameters

word

string

The word to be added to the dictionary.

ClearWords()

Clears all words from the custom word dictionary.

Declaration

cs-api-definition
void ClearWords()

Remarks

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

RemoveWord(string)

Removes the specified word from the custom word dictionary.

Declaration

cs-api-definition
void RemoveWord(string word)

Parameters

word

string

The word to be removed from the dictionary.

Events

DataChanged

Declaration

cs-api-definition
event EventHandler DataChanged

Event Value

EventHandler