Class SpellChecker
Inheritance
System.Object
SpellChecker
Assembly: Syncfusion.Shared.Base.dll
Syntax
public class SpellChecker : Component, IVisualStyle
Constructors
SpellChecker()
Declaration
SpellChecker(IContainer)
Declaration
public SpellChecker(IContainer container)
Parameters
Type |
Name |
Description |
System.ComponentModel.IContainer |
container |
|
Properties
ChangeAllText
Holds the string of the change all.
Declaration
public string ChangeAllText { get; set; }
Property Value
CloseReason
Gets/Sets the status of the dialog window
Declaration
public CloseReason CloseReason { get; set; }
Property Value
Type |
System.Windows.Forms.CloseReason |
CustomDictionaryPath
Gets or Sets a value specifying the path of the custom dictionary.
Declaration
public string CustomDictionaryPath { get; set; }
Property Value
DictionaryPath
Gets or Sets a value specifying the path of the dictionary.
Declaration
public string DictionaryPath { get; set; }
Property Value
DictionaryStream
Gets or sets the stream that contains the dictionary.
Declaration
public Stream DictionaryStream { get; set; }
Property Value
ExcludeEmailAddress
Gets or Sets a value specifying whether to ignore email address during spell check.
Declaration
public bool ExcludeEmailAddress { get; set; }
Property Value
ExcludeFileNames
Gets or Sets a value specifying whether to ignore file names during spell check.
Declaration
public bool ExcludeFileNames { get; set; }
Property Value
ExcludeHtmlTags
Gets or Sets a value specifying whether to ignore html tags during spell check.
Declaration
public bool ExcludeHtmlTags { get; set; }
Property Value
ExcludeInternetAddresses
Gets or Sets a value specifying whether to ignore internet address during spell check.
Declaration
public bool ExcludeInternetAddresses { get; set; }
Property Value
ExcludeRepeatedWords
Gets or Sets a value specifying whether to ignore repeated words during spell check.
Declaration
public bool ExcludeRepeatedWords { get; set; }
Property Value
ExcludeSpecialSymbols
Gets or Sets a value specifying whether to ignore special symbols during spell check.
Declaration
public bool ExcludeSpecialSymbols { get; set; }
Property Value
ExcludeWordsInMixedCase
Gets or Sets a value specifying whether to ignore words in mixed case during spell check.
Declaration
public bool ExcludeWordsInMixedCase { get; set; }
Property Value
ExcludeWordsInUpperCase
Gets or Sets a value specifying whether to ignore words in upper case during spell check.
Declaration
public bool ExcludeWordsInUpperCase { get; set; }
Property Value
ExcludeWordsWithNumbers
Gets or Sets a value specifying whether to ignore words with number during spell check.
Declaration
public bool ExcludeWordsWithNumbers { get; set; }
Property Value
IsSpreadsheetLikeSpellChecker
Gets/Sets the value to indendify the type of the SpellChecker.
Declaration
public bool IsSpreadsheetLikeSpellChecker { get; set; }
Property Value
MaxSuggestions
Gets or Sets a value specifying the number of suggestions to be displayed in the suggestion list.
Declaration
public int MaxSuggestions { get; set; }
Property Value
MetroColor
Declaration
public Color MetroColor { get; set; }
Property Value
Type |
System.Drawing.Color |
MisspelledWords
Holds the list of misspelled words.
Declaration
public ArrayList MisspelledWords { get; }
Property Value
Type |
System.Collections.ArrayList |
VisualStyle
Declaration
public SpellCheckerStyle VisualStyle { get; set; }
Property Value
Methods
FindCasing(String)
Finds the casing for the given word.
Declaration
public void FindCasing(string word)
Parameters
Type |
Name |
Description |
System.String |
word |
|
ResetChangeAllText()
Reset the ChangeAllText property
Declaration
public void ResetChangeAllText()
ResetIsSpreadsheetLikeSpellChecker()
Serializing the Reset property
Declaration
public void ResetIsSpreadsheetLikeSpellChecker()
SpellCheck(ISpellEditor)
Checks the text of the for misspellings with Syncfusion.Text.SpellChecker.SpellCheckerDialog.
Declaration
public void SpellCheck(ISpellEditor editor)
Parameters
Type |
Name |
Description |
ISpellEditor |
editor |
IEditor whose text is to be checked for misspellings.
|
SpellCheck(String)
Performs the spell check operation.
Declaration
public string SpellCheck(string text)
Parameters
Type |
Name |
Description |
System.String |
text |
|
Returns
Suggest(String)
Generates the word list by deleting a single alphabet and interchanging the adjacent alphabets every time
Declaration
public ArrayList Suggest(string source)
Parameters
Type |
Name |
Description |
System.String |
source |
|
Returns
Type |
System.Collections.ArrayList |
WriteToDictionary(String, String)
Writes the specified word to the dictionary.
Declaration
public void WriteToDictionary(string custDictPath, string word)
Parameters
Type |
Name |
Description |
System.String |
custDictPath |
Specifies the path of the dictionay file.
|
System.String |
word |
Specifies the word to be added to the dictionary.
|
Events
Error
Declaration
public event SpellChecker.ExceptionHanlder Error
Event Type
Explicit Interface Implementations
IVisualStyle.VisualTheme
Declaration
string IVisualStyle.VisualTheme { get; set; }
Returns
Implements