Class IgnoredWordDictionary
Represents a dictionary of ignored words for proofing purposes.
Inheritance
Namespace: Telerik.Windows.Documents.Proofing
Assembly: Telerik.Windows.Controls.RichTextBox.dll
Syntax
public class IgnoredWordDictionary : ObservableCollection<string>, IIgnoredWordDictionary, INotifyCollectionChanged
Constructors
IgnoredWordDictionary()
Declaration
public IgnoredWordDictionary()
Methods
AddWord(String)
Adds a new word to the ignored word dictionary.
Declaration
public void AddWord(string word)
Parameters
System.String
word
The word to be added to the ignored word list. |
Implements
ContainsWord(String)
Determines whether the specified word is contained in the ignored word dictionary.
Declaration
public bool ContainsWord(string word)
Parameters
System.String
word
The word to check for existence in the ignored word dictionary. |
Returns
System.Boolean
|
Implements
RemoveWord(String)
Removes a specified word from the ignored word dictionary.
Declaration
public bool RemoveWord(string word)
Parameters
System.String
word
The word to be removed from the dictionary. |
Returns
System.Boolean
Returns true if the word was successfully removed; otherwise, false. |