[]
Specifies flags that determine whether words should be ignored during spell-checking.
[Flags]
public enum IgnoreOptions
| 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. |