Skip to main content
A newer version of this page is available. .

ASPxRichEdit.Callback Event

Fires when a round trip to the server has been initiated either manually (by a call to the client ASPxClientRichEdit.PerformCallback method) or automatically by the ASPxRichEdit (an internal service callback).

Namespace: DevExpress.Web.ASPxRichEdit

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

Declaration

public event CallbackEventHandlerBase Callback

Event Data

The Callback event's data class is CallbackEventArgsBase. The following properties provide information specific to this event:

Property Description
Parameter Gets a string that contains specific information (if any) passed from the client side.

Remarks

The Callback event allows any desired server-side processing to be performed in response to a call to the client ASPxClientRichEdit.PerformCallback method and any resulting required information to be passed to the client for further processing (if needed).

Specific information passed from the client side can be obtained via the CallbackEventArgsBase.Parameter property.

See Also