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.v24.1.dll
NuGet Package: DevExpress.Web.Office
Declaration
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 |
|
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