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

ASPxRichEdit.Saving Event

Allows the current rich text document to be processed before it is saved to the server.

Namespace: DevExpress.Web.ASPxRichEdit

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

NuGet Package: DevExpress.Web.Office

Declaration

public event DocumentSavingEventHandler Saving

Event Data

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

Property Description
DocumentID Gets the document’s unique identifier.
Handled Gets or sets whether the event is handled manually, so no default processing is required.
MultiUserConflict Gets a value identifying the multi-user conflict reason.
MultiUserConflictResolve Gets or sets a value specifying how to resolve an open document’s multi-user conflict.

Remarks

Use the Saving event to process a document before it is saved to the server.

See Also