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

Namespace:  C1.Silverlight.SpellChecker
Assembly:  C1.Silverlight.SpellChecker (in C1.Silverlight.SpellChecker.dll)

Syntax

C#
[FlagsAttribute]
public enum IgnoreOptions
Visual Basic
<FlagsAttribute> _
Public Enumeration IgnoreOptions

Members

Member nameDescription
None Do not ignore any words.
Numbers Ignore words that contain numbers (digits).
UpperCase Ignore words that are all uppercase.
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).
Urls Ignore words that look like URLs or file names.
HtmlTags Ignore text in HTML/XML tags.
Default Default setting: ignores numbers, mixed case, URLs, and HTML tags.
All Ignores numbers, mixed case, URLs, HTML tags, and uppercase.

See Also