Skip to main content
A newer version of this page is available. .

DictionaryHelper(DictionaryCollection, DictionaryCollection, CultureInfo, Boolean) Constructor

OBSOLETE

This constructor has become obsolete. Use the constructor that takes the spellChecker and sharedDictionaries parameters.

Initializes a new instance of the DictionaryHelper class with the specified settings.

Namespace: DevExpress.XtraSpellChecker

Assembly: DevExpress.SpellChecker.v18.2.Core.dll

Declaration

[Obsolete("This constructor has become obsolete. Use the constructor that takes the spellChecker and sharedDictionaries parameters.", true)]
public DictionaryHelper(
    DictionaryCollection spellCheckerDictionaries,
    DictionaryCollection sharedDictionaries,
    CultureInfo culture,
    bool useShared
)

Parameters

Name Type Description
spellCheckerDictionaries DictionaryCollection

A DictionaryCollection containing available dictionaries.

sharedDictionaries DictionaryCollection

A DictionaryCollection containing dictionaries in the SharedDictionaryStorage

culture CultureInfo

A CultureInfo specifying culture settings.

useShared Boolean

true to use dictionaries from the SharedDictionaryStorage; otherwise, false.

Remarks

Use the SpellCheckerBase.DictionaryHelper property to get access to an object of the DictionaryHelper class instead.

See Also