Class SfSpellChecker
SfSpellChecker control helps to find erroneous spelling in a editor and provides suggestions for it.
Inheritance
System.Object
SfSpellChecker
Implements
System.IDisposable
Assembly: Syncfusion.SfSpellChecker.UWP.dll
Syntax
[ClassReference(IsReviewed = false)]
public class SfSpellChecker : Control, IDisposable
Constructors
SfSpellChecker()
Initializes the instance of SfSpellChecker.
Declaration
[ClassReference(IsReviewed = false)]
public SfSpellChecker()
Fields
CustomDictionaryPathProperty
Using a DependencyProperty as the backing store for CustomDictionaryPath. This enables animation, styling, binding, etc...
Declaration
public static readonly DependencyProperty CustomDictionaryPathProperty
Field Value
Type |
Windows.UI.Xaml.DependencyProperty |
IgnoreAlphaNumericWordsProperty
Using a DependencyProperty as the backing store for IgnoreAlphaNumericWords. This enables animation, styling, binding, etc...
Declaration
public static readonly DependencyProperty IgnoreAlphaNumericWordsProperty
Field Value
Type |
Windows.UI.Xaml.DependencyProperty |
IgnoreEmailAddressProperty
Using a DependencyProperty as the backing store for IgnoreEmailAddress. This enables animation, styling, binding, etc...
Declaration
public static readonly DependencyProperty IgnoreEmailAddressProperty
Field Value
Type |
Windows.UI.Xaml.DependencyProperty |
Using a DependencyProperty as the backing store for IgnoreHtmlTags. This enables animation, styling, binding, etc...
Declaration
public static readonly DependencyProperty IgnoreHtmlTagsProperty
Field Value
Type |
Windows.UI.Xaml.DependencyProperty |
IgnoreMixedCaseWordsProperty
Using a DependencyProperty as the backing store for IgnoreMixedCaseWords. This enables animation, styling, binding, etc...
Declaration
public static readonly DependencyProperty IgnoreMixedCaseWordsProperty
Field Value
Type |
Windows.UI.Xaml.DependencyProperty |
IgnoreUpperCaseWordsProperty
Using a DependencyProperty as the backing store for IgnoreUpperCaseWords. This enables animation, styling, binding, etc...
Declaration
public static readonly DependencyProperty IgnoreUpperCaseWordsProperty
Field Value
Type |
Windows.UI.Xaml.DependencyProperty |
IgnoreUrlProperty
Using a DependencyProperty as the backing store for IgnoreUrl. This enables animation, styling, binding, etc...
Declaration
public static readonly DependencyProperty IgnoreUrlProperty
Field Value
Type |
Windows.UI.Xaml.DependencyProperty |
Properties
CustomDictionaryPath
gets or sets string value for user dictionary path.
Declaration
public string CustomDictionaryPath { get; set; }
Property Value
IgnoreAlphaNumericWords
Gets or Sets the boolean value to check AlphaNumericWords
Declaration
[ClassReference(IsReviewed = false)]
public bool IgnoreAlphaNumericWords { get; set; }
Property Value
IgnoreEmailAddress
Gets or Sets the boolean value to check Email addresses
Declaration
[ClassReference(IsReviewed = false)]
public bool IgnoreEmailAddress { get; set; }
Property Value
Gets or Sets the boolean value to check HTML tags
Declaration
[ClassReference(IsReviewed = false)]
public bool IgnoreHtmlTags { get; set; }
Property Value
IgnoreMixedCaseWords
Gets or Sets the boolean value to check mixed case words
Declaration
[ClassReference(IsReviewed = false)]
public bool IgnoreMixedCaseWords { get; set; }
Property Value
IgnoreUpperCaseWords
Gets or Sets the boolean value to check upper case words
Declaration
[ClassReference(IsReviewed = false)]
public bool IgnoreUpperCaseWords { get; set; }
Property Value
IgnoreUrl
Gets or Sets the boolean value to check URLs.
Declaration
[ClassReference(IsReviewed = false)]
public bool IgnoreUrl { get; set; }
Property Value
Methods
Dispose()
Disposes the instance of SfSpellChecker
Declaration
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 |
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 |
System.Collections.Generic.List<System.String> |
GetPhoneticWords(String, AccuracyLevels)
Declaration
[ClassReference(IsReviewed = false)]
public List<string> GetPhoneticWords(string word, AccuracyLevels accuracy)
Parameters
Returns
Type |
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 |
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
Perform spell checking with ContextMenu in the editor control.
Declaration
[ClassReference(IsReviewed = false)]
public void PerformSpellCheckUsingContextMenu(IEditorProperties editor)
Parameters
Perform spell checking with dialog window in the editor control.
Declaration
[ClassReference(IsReviewed = false)]
public void PerformSpellCheckUsingDialog(IEditorProperties editor)
Parameters
Events
SpellCheckCompleted
Event which is handled after spell check operations are completed
Declaration
public event EventHandler SpellCheckCompleted
Event Type
Implements
System.IDisposable
Extension Methods