RichTextBox for WPF | ComponentOne
C1.WPF.SpellChecker Namespace / IgnoreOptions Enumeration

In This Topic
    IgnoreOptions Enumeration
    In This Topic
    Specifies flags that determine whether words should be ignored during spell-checking.
    Syntax
    'Declaration
     
    
    Public Enum IgnoreOptions 
       Inherits System.Enum
    public enum IgnoreOptions : System.Enum 
    Members
    MemberDescription
    AllIgnores numbers, mixed case, URLs, HTML tags, and uppercase.
    DefaultDefault setting: ignores numbers, mixed case, URLs, and HTML tags.
    HtmlTagsIgnore text in HTML/XML tags.
    MixedCaseIgnore 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).
    NoneDo not ignore any words.
    NumbersIgnore words that contain numbers (digits).
    UpperCaseIgnore words that are all uppercase.
    UrlsIgnore words that look like URLs or file names.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             C1.WPF.SpellChecker.IgnoreOptions

    See Also