Interface ICustomWordDictionary
Represents a custom word dictionary utilized for spell checking in a document.
Inherited Members
Namespace: Telerik.Windows.Documents.Proofing
Assembly: Telerik.Windows.Controls.RichTextBox.dll
Syntax
public interface ICustomWordDictionary : IWordDictionary
Methods
AddWord(String)
Adds a new word to the custom word dictionary.
Declaration
void AddWord(string word)
Parameters
System.String
word
The word to be added to the dictionary. |
ClearWords()
Clears all words from the custom word dictionary.
Declaration
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
void RemoveWord(string word)
Parameters
System.String
word
The word to be removed from the dictionary. |
Events
DataChanged
Declaration
event EventHandler DataChanged
Event Type
System.EventHandler
|