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

Represents a dictionary of ignored words for proofing purposes.

Definition

Namespace:Telerik.Windows.Documents.Proofing

Assembly:Telerik.Windows.Controls.RichTextBox.dll

Syntax:

C#
public interface IIgnoredWordDictionary : INotifyCollectionChanged

Derived Classes: IgnoredWordDictionary

Inherited Members INotifyCollectionChanged.CollectionChanged

Methods

Adds a word to the ignored word dictionary.

C#
void AddWord(string word)
Parameters:wordstring

The word to be added to the ignored word list.

Clears all entries from the ignored word dictionary.

C#
void Clear()
Remarks:

This method removes every word that has been added to the ignored word list, resetting it to an empty state.

Determines whether the specified word is contained in the ignored word dictionary.

C#
bool ContainsWord(string word)
Parameters:wordstring

The word to check for in the ignored word dictionary.

Returns:

bool

true if the word is found in the dictionary; otherwise, false.

Removes a specified word from the ignored word dictionary.

C#
bool RemoveWord(string word)
Parameters:wordstring

The word to be removed from the dictionary.

Returns:

bool

True if the word was successfully removed; otherwise, false.