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
Namespace:Telerik.Windows.Documents.Proofing
Assembly:Telerik.Windows.Controls.RichTextBox.dll
Syntax:
C#
public class RadNonPersistentCustomDictionary : RadDictionary, ICustomWordDictionary, IWordDictionary
Inheritance: objectRadDictionaryRadNonPersistentCustomDictionary
Implements:
Inherited Members
Constructors
C#
public RadNonPersistentCustomDictionary()
Methods
Adds a word to the non-persistent custom dictionary.
C#
public void AddWord(string word)
The word to be added to the dictionary.
Implements:
Clears all words from the custom dictionary.
C#
public void ClearWords()
Implements:
Removes a specified word from the custom dictionary.
C#
public void RemoveWord(string word)
The word to be removed from the dictionary.
Implements: