Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Fixed the name of the parameter in the possible sub-tags section

...

Excerpt

SpellEngineOptions parameter defines spell check engine options that should be applied for a specific language. Any of the parameters “options” described in SpellCheck Engine Options can be predefined for each language.

Description:SpellEngineOptions parameter defines spell check engine options that should be applied to a specific language.
Possible sub-tags:
  • Locale – language short code;

  • Provider SpellCheckProvider – spellcheck engine provider;

  • Any of the SpellCheck Engine Options.


Code Block
languagexml
themeEmacs
<SpellEngineOptions>
	<Locale>am</Locale>
	<SpellCheckProvider>ssce</SpellCheckProvider>
	<Dictionary FullPath="ssceam2.clx">
		<ForSuggest>no</ForSuggest>
	</Dictionary>
	<Dictionary FullPath="ssceam2s.clx">
		<ForSuggest>yes</ForSuggest>
	</Dictionary>
	<Dictionary FullPath="keywords.clx"/>
	<Dictionary FullPath="ssceam.tlx"/>
</SpellEngineOptions>


...