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

Represents a non-persistent custom dictionary for proofing purposes in the Telerik Windows Documents framework. This dictionary allows users to manage a collection of custom words or terms that are not saved across sessions.

Definition

Constructors

C#
public RadNonPersistentCustomDictionary()

Methods

Adds a word to the non-persistent custom dictionary.

C#
public void AddWord(string word)
Parameters:wordstring

The word to be added to the dictionary.

Implements: ICustomWordDictionary.AddWord(string)

Clears all words from the custom dictionary.

C#
public void ClearWords()

Implements: ICustomWordDictionary.ClearWords()

Removes a specified word from the custom dictionary.

C#
public void RemoveWord(string word)
Parameters:wordstring

The word to be removed from the dictionary.

Implements: ICustomWordDictionary.RemoveWord(string)