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

Represents a custom dictionary for isolated storage, providing functionality to manage and manipulate key-value pairs in a way that is tailored for proofing operations in the Telerik RadRichTextBox.

Definition

Constructors

C#
public RadIsolatedStorageCustomDictionary()
C#
public RadIsolatedStorageCustomDictionary(IsolatedStorageScope storageScope, string customDictionaryName)
Parameters:storageScopeIsolatedStorageScopecustomDictionaryNamestring
C#
public RadIsolatedStorageCustomDictionary(IsolatedStorageScope storageScope)
Parameters:storageScopeIsolatedStorageScope
C#
public RadIsolatedStorageCustomDictionary(string customDictionaryName)
Parameters:customDictionaryNamestring

Fields

C#
public static readonly string DefaultDictionaryName
C#
public static readonly IsolatedStorageScope DefaultIsolatedStorageScope

Properties

Automatically updates the isolated storage with the given custom dictionary.

C#
public bool AutoUpdateIsolatedStorage { get; set; }

Methods

Adds a word to the custom dictionary used for proofing.

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

The word to be added to the custom dictionary.

Implements: ICustomWordDictionary.AddWord(string)

Clears all words from the isolated storage custom dictionary.

C#
public void ClearWords()

Implements: ICustomWordDictionary.ClearWords()

Remarks:

This method removes any previously added words, resetting the dictionary to its initial state.

C#
public void Dispose()

Implements: IDisposable.Dispose()

Removes a specified word from the custom dictionary.

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

The word to be removed from the custom dictionary.

Implements: ICustomWordDictionary.RemoveWord(string)

Updates the isolated storage for the custom dictionary.

C#
public void UpdateIsolatedStorage()