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

Represents a dictionary interface for word proofing in the Telerik document framework.

Definition

Namespace:Telerik.Windows.Documents.Proofing

Assembly:Telerik.Windows.Controls.RichTextBox.dll

Syntax:

C#
public interface IWordDictionary

Derived Classes: RadDictionaryRadEn_USDictionaryRadIsolatedStorageCustomDictionaryRadNonPersistentCustomDictionaryRadWordsDictionary

Properties

Gets the collection of words from the dictionary.

C#
IEnumerable<string> Words { get; }

Methods

Determines whether the specified word exists in the word dictionary.

C#
bool ContainsWord(string word)
Parameters:wordstring

The word to check for existence in the dictionary.

Returns:

bool

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

Retrieves the metaphone key for the specified word from the dictionary.

C#
string GetMetaphoneKey(string word)
Parameters:wordstring

The word for which to obtain the metaphone key.

Returns:

string

Returns the metaphone key as a string.

Retrieves a collection of words that match the specified Metaphone key.

C#
IEnumerable<string> GetWordsByMetaphoneKey(string word)
Parameters:wordstring

The Metaphone key used to filter the words.

Returns:

IEnumerable<string>

A collection of words that correspond to the given Metaphone key.