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

SpellCheckerISpellDictionary.LoadFromStream(Stream, Stream, Stream) Method

Loads the dictionary, affix rules and the alphabet from the specified streams into the current SpellCheckerISpellDictionary object, and initializes it.

Namespace: DevExpress.XtraSpellChecker

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

NuGet Packages: DevExpress.SpellChecker.Core, DevExpress.WindowsDesktop.SpellChecker.Core

Declaration

public virtual void LoadFromStream(
    Stream dictionaryStream,
    Stream grammarStream,
    Stream alphabetStream
)

Parameters

Name Type Description
dictionaryStream Stream

A Stream object which stores the base word list.

grammarStream Stream

A Stream object which stores the affix rules list.

alphabetStream Stream

A Stream object which stores the language’s alphabet.

The following code snippets (auto-collected from DevExpress Examples) contain references to the LoadFromStream(Stream, Stream, Stream) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also