[]
        
(Showing Draft Content)

C1.WPF.SpellChecker.IgnoreOptions

IgnoreOptions Enum

Specifies flags that determine whether words should be ignored during spell-checking.

Namespace: C1.WPF.SpellChecker
Assembly: C1.WPF.SpellChecker.4.6.2.dll
Syntax
[Flags]
public enum IgnoreOptions

Fields

Name Description
All

Ignores numbers, mixed case, URLs, HTML tags, and uppercase.

Default

Default setting: ignores numbers, mixed case, URLs, and HTML tags.

HtmlTags

Ignore text in HTML/XML tags.

MixedCase

Ignore words that contain a mix of uppercase and lowercase characters, except when there is a single uppercase at the start (for example, "Lowercase" would not be ignored, but "LowerCase" and "lowerCase" would).

None

Do not ignore any words.

Numbers

Ignore words that contain numbers (digits).

UpperCase

Ignore words that are all uppercase.

Urls

Ignore words that look like URLs or file names.