Skip to main content

SpellCheckerDictionary.LoadAlphabetFromStream(Stream) Method

OBSOLETE

This method has become obsolete. To load an alphabet from a stream use the 'FillAlphabetFromStream' method. To obtain the loaded alphabet use the 'AlphabetChars' property.

Loads the alphabet from the specified stream into the current SpellCheckerDictionary object.

Namespace: DevExpress.XtraSpellChecker

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

NuGet Package: DevExpress.SpellChecker.Core

Declaration

[Obsolete("This method has become obsolete. To load an alphabet from a stream use the 'FillAlphabetFromStream' method. To obtain the loaded alphabet use the 'AlphabetChars' property.", true)]
public char[] LoadAlphabetFromStream(
    Stream stream
)

Parameters

Name Type Description
stream Stream

A Stream object which stores the alphabet.

Returns

Type Description
Char[]

An array of characters, representing the alphabet for the current language.

Remarks

The alphabet is a language and culture specific ordered set of characters. It is used to construct word derivatives and sort them.

See Also