Back to Devexpress

SpellCheckBuilder Class

aspnetcore-devexpress-dot-aspnetcore-dot-richedit-e6abf89e.md

latest1.9 KB
Original Source

SpellCheckBuilder Class

A builder for spell check settings.

Namespace : DevExpress.AspNetCore.RichEdit

Assembly : DevExpress.AspNetCore.RichEdit.v25.2.dll

NuGet Package : DevExpress.AspNetCore.RichEdit

Declaration

csharp
public class SpellCheckBuilder

The following members return SpellCheckBuilder objects:

Remarks

cshtml
<script>
function checkWordSpelling(word, callback) {
    ...
};
function addWordToDictionary(word) {
    ...
};
</script>

@(Html.DevExpress().RichEdit("richEdit")
    .SpellCheck (s => {
        s.Enabled(true);
        s.SuggestionCount(5);
        s.AddWordToDictionary("addWordToDictionary");
        s.CheckWordSpelling("checkWordSpelling");
    })
)

For more information, refer to the following help topic: Spell Check.

Inheritance

Object SpellCheckBuilder

See Also

SpellCheckBuilder Members

DevExpress.AspNetCore.RichEdit Namespace