WinForms

Upgrade Guide User Guide Demos Support Forums Download
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class SpellCheckerBase - WindowsForms API Reference | Syncfusion

    Show / Hide Table of Contents

    Class SpellCheckerBase

    SpellChecker base helps to find erroneous spelling in a word and provides suggestions for it.

    Inheritance
    System.Object
    SpellCheckerBase
    Inherited Members
    System.Object.ToString()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    Namespace: Syncfusion.SpellChecker.Base
    Assembly: Syncfusion.SpellChecker.Base.dll
    Syntax
    [ClassReference(IsReviewed = false)]
    public class SpellCheckerBase

    Constructors

    SpellCheckerBase()

    Initializes the instance of SpellChecker base.

    Declaration
    [ClassReference(IsReviewed = false)]
    public SpellCheckerBase()

    SpellCheckerBase(Stream)

    Initializes the instance of SpellChecker base.

    Declaration
    [ClassReference(IsReviewed = false)]
    public SpellCheckerBase(Stream stream)
    Parameters
    Type Name Description
    System.IO.Stream stream

    Properties

    GlobalDictionaries

    Declaration
    public static DictionaryCollection GlobalDictionaries { get; }
    Property Value
    Type Description
    DictionaryCollection

    IgnoreAlphaNumericWords

    Gets or Sets the boolean value to check AlphaNumericWords

    Declaration
    [ClassReference(IsReviewed = false)]
    public bool IgnoreAlphaNumericWords { get; set; }
    Property Value
    Type Description
    System.Boolean

    IgnoreEmailAddress

    Gets or Sets the boolean value to check Email addresses

    Declaration
    [ClassReference(IsReviewed = false)]
    public bool IgnoreEmailAddress { get; set; }
    Property Value
    Type Description
    System.Boolean

    IgnoreFileNames

    Gets or Sets the boolean value to check file names

    Declaration
    [ClassReference(IsReviewed = false)]
    public bool IgnoreFileNames { get; set; }
    Property Value
    Type Description
    System.Boolean

    IgnoreHtmlTags

    Gets or Sets the boolean value to check html tags

    Declaration
    [ClassReference(IsReviewed = false)]
    public bool IgnoreHtmlTags { get; set; }
    Property Value
    Type Description
    System.Boolean

    IgnoreMixedCaseWords

    Gets or Sets the boolean value to check mixed case words

    Declaration
    [ClassReference(IsReviewed = false)]
    public bool IgnoreMixedCaseWords { get; set; }
    Property Value
    Type Description
    System.Boolean

    IgnoreUpperCaseWords

    Gets or Sets the boolean value to check upper case words

    Declaration
    [ClassReference(IsReviewed = false)]
    public bool IgnoreUpperCaseWords { get; set; }
    Property Value
    Type Description
    System.Boolean

    IgnoreUrl

    Gets or Sets the boolean value to check urls

    Declaration
    [ClassReference(IsReviewed = false)]
    public bool IgnoreUrl { get; set; }
    Property Value
    Type Description
    System.Boolean

    Methods

    AddWordsInDictionaryStream(Stream)

    Adds the word from custom stream to dicitionary collection

    Declaration
    [ClassReference(IsReviewed = false)]
    public bool AddWordsInDictionaryStream(Stream stream)
    Parameters
    Type Name Description
    System.IO.Stream stream
    Returns
    Type Description
    System.Boolean

    AddWordToDictionary(String)

    Adds the word to dictionary word collection

    Declaration
    [ClassReference(IsReviewed = false)]
    public bool AddWordToDictionary(string word)
    Parameters
    Type Name Description
    System.String word
    Returns
    Type Description
    System.Boolean

    GetAnagrams(String)

    Returns the anagrams for error word

    Declaration
    [ClassReference(IsReviewed = false)]
    public List<string> GetAnagrams(string word)
    Parameters
    Type Name Description
    System.String word
    Returns
    Type Description
    System.Collections.Generic.List<System.String>

    GetPhoneticWords(String)

    Returns the phonetic suggestions for error word in medium accuracy.

    Declaration
    [ClassReference(IsReviewed = false)]
    public List<string> GetPhoneticWords(string word)
    Parameters
    Type Name Description
    System.String word
    Returns
    Type Description
    System.Collections.Generic.List<System.String>

    GetPhoneticWords(String, AccuracyLevels)

    Returns the phonetic suggestions for error word in specified accuracy.

    Declaration
    [ClassReference(IsReviewed = false)]
    public List<string> GetPhoneticWords(string word, AccuracyLevels accuracy)
    Parameters
    Type Name Description
    System.String word
    AccuracyLevels accuracy
    Returns
    Type Description
    System.Collections.Generic.List<System.String>

    GetSuggestions(String)

    Returns the suggestions for error word

    Declaration
    [ClassReference(IsReviewed = false)]
    public Dictionary<string, List<string>> GetSuggestions(string word)
    Parameters
    Type Name Description
    System.String word
    Returns
    Type Description
    System.Collections.Generic.Dictionary<System.String, System.Collections.Generic.List<System.String>>

    HasError(String)

    Checks whether the word exists in dictionary

    Declaration
    [ClassReference(IsReviewed = false)]
    public bool HasError(string word)
    Parameters
    Type Name Description
    System.String word
    Returns
    Type Description
    System.Boolean

    IsPatternMatch(String)

    Returns whether the word matches Email or File name or URL pattern.

    Declaration
    [ClassReference(IsReviewed = false)]
    public bool IsPatternMatch(string word)
    Parameters
    Type Name Description
    System.String word
    Returns
    Type Description
    System.Boolean
    Back to top Generated by DocFX
    Copyright © 2001 - 2021 Syncfusion Inc. All Rights Reserved