Click or drag to resize
SpellChecker Properties

The SpellChecker type exposes the following members.

Properties
  Name Description
Public property CustomAppendix
The suffix that gets appended to the custom dictionary file name. It is usually a user specific string that allows to distinguish dictionaries for different users. Default filenames are Language + CustomAppendix + ".txt".

Field Value

Type: 
The default is -Custom
Public property CustomDictionarySource
Manipulate the custom dictionary source. The new value must implement ICustomDictionarySource.
Public property CustomDictionarySourceType
The fully qualified name of the type that will be used for the custom dictionary storage. The type name must include the assembly, culture and public key token. A new instance will be created internally unless you set CustomDictionarySource CustomDictionarySource directly.
Public property DictionaryLanguage
The language of the dictionary to be used for spellchecking. It usually is the same as the corresponding TDF file (without the extension).
Public property EditDistance
Specifies the edit distance. If you increase the value, the checking speed decreases but more suggestions are presented. It does not do anything for the phonetic spellchecking.
Public property Errors
The errors after the last spellcheck. The getter method will call CheckText automatically if the text has not been checked yet.
Public property SpellCheckProvider
Specifies whether KaxSpell should use the internal spellchecking algorithm or try to use Microsoft Word. The possible values are defined in the SpellCheckProvider enum.
Public property SpellCheckProviderTypeName
Specifies the type name for the custom spell check provider
Public property Text
Sets the text to be spellchecked. It can be plain text or HTML.
Public property TextWords
This property returns the list of words that was generated when the Text property is set.
Public property WordIgnoreOptions
A set of rules that specify words that should be ignored during the spellcheck. Note that this property should be set before the Text property.
Top
See Also