Class SpellCheckerModule
Represents the spell checker module in DocumentEditor.
Inheritance
System.Object
SpellCheckerModule
Namespace: Syncfusion.Blazor.DocumentEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public class SpellCheckerModule : Object
Constructors
SpellCheckerModule(BaseComponent)
Default constructor for SpellCheckerModule.
Declaration
public SpellCheckerModule(BaseComponent baseComponent)
Parameters
Type | Name | Description |
---|---|---|
BaseComponent | baseComponent | An DocumentEdiorComponent instance. |
Properties
DocumentEditorComponent
DocumentEdiorComponent instance.
Declaration
protected BaseComponent DocumentEditorComponent { get; set; }
Property Value
Type | Description |
---|---|
BaseComponent |
Methods
ClearCache()
Method to clear cached words for spell check
Declaration
public Task ClearCache()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task |
GetAllowSpellCheckAndSuggestion()
Getter indicates whether suggestion enabled.
Declaration
public Task<bool> GetAllowSpellCheckAndSuggestion()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<System.Boolean> |
GetEnableOptimizedSpellCheck()
Gets the boolean indicating whether optimized spell check to be performed.
Declaration
public Task<bool> GetEnableOptimizedSpellCheck()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<System.Boolean> |
GetLanguageID()
Gets the languageID.
Declaration
public Task<int> GetLanguageID()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<System.Int32> |
GetRemoveUnderline()
Getter indicates whether underline removed for mis-spelled word.
Declaration
public Task<bool> GetRemoveUnderline()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<System.Boolean> |
GetUniqueWordsCount()
Gets the spell checked Unique words.
Declaration
public Task<int> GetUniqueWordsCount()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<System.Int32> |
SetAllowSpellCheckAndSuggestion(Boolean)
Setter to enable or disable suggestion
Declaration
public void SetAllowSpellCheckAndSuggestion(bool value)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | value |
SetEnableOptimizedSpellCheck(Boolean)
Sets the boolean indicating whether optimized spell check to be performed.
Declaration
public void SetEnableOptimizedSpellCheck(bool value)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | value |
SetLanguageID(Int32)
Sets the languageID.
Declaration
public void SetLanguageID(int value)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | value |
SetRemoveUnderline(Boolean)
Setter to enable or disable underline for mis-spelled word
Declaration
public void SetRemoveUnderline(bool value)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | value |
SetUniqueWordsCount(Int32)
Sets the spell checked Unique words.
Declaration
public void SetUniqueWordsCount(int value)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | value |