Skip to main content
All docs
V23.2

ASPxRichEditSpellCheckerSettings.MaxRequestLength Property

Gets or sets the maximum length of a request that the ASPxRichEdit sends to the server without splitting.

Namespace: DevExpress.Web.ASPxRichEdit

Assembly: DevExpress.Web.ASPxRichEdit.v23.2.dll

NuGet Package: DevExpress.Web.Office

Declaration

[DefaultValue(300)]
public int MaxRequestLength { get; set; }

Property Value

Type Default Description
Int32 300

The maximum request length.

Property Paths

You can access this nested property as listed below:

Object Type Path to MaxRequestLength
ASPxRichEditSettings
.SpellChecker .MaxRequestLength

Remarks

When the length of a request to the server exceeds the MaxRequestLength property value, the ASPxRichEdit splits the request content into multiple requests by paragraphs. The control cannot split a request that has a single paragraph.

The example below demonstrates how to reduce the number of requests to the server but increase their sizes:

<dx:ASPxRichEdit ID="RichEdit" runat="server">
    <Settings>
        <SpellChecker Enabled="true" MaxRequestLength="1000">
            <!-- ... -->
        </SpellChecker>
    </Settings>
</dx:ASPxRichEdit>
See Also