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

SpellCheckerOpenOfficeDictionary.LoadFromStream(Stream, Stream, Stream) Method

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

Namespace: DevExpress.XtraSpellChecker

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

Declaration

public override 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

Parameter is ignored in overload for the SpellCheckerOpenOfficeDictionary.

Remarks

Use this method when file system storage is unavailable or inconvenient. Dictionaries can be included into resource assemblies, or become available from a server via the web .

The following code snippet (auto-collected from DevExpress Examples) contains a reference 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