Skip to main content

RequestSettings.maxCommandCount Property

Specifies the maximum number of commands that the control can send in one request.

Declaration

maxCommandCount: number

Property Value

Type Description
number

The number of commands. The default value is 250.

Remarks

When ASPxRichEdit loads a document, it sends a document model to the client and then synchronizes the model’s client-side changes with the server.

The maxCommandCount property allows you to specify the maximum number of commands that the control can send in one request. To access this synchronization setting, use the requestSettings property.

richEdit.requestSettings.maxCommandCount = 100;

For more information on the client-server document synchronization in ASPxRichEdit, refer to the following topic: ASPxRichEdit - Client-Server Document Synchronization.

See Also