Skip to main content
All docs
V25.1
  • SpellCheckBuilder Class

    A builder for spell check settings.

    Namespace: DevExpress.AspNetCore.RichEdit

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

    NuGet Package: DevExpress.AspNetCore.RichEdit

    Declaration

    public class SpellCheckBuilder

    Remarks

    <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