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

DocumentManager.AutoSaving Event

Enables you to process the auto saving of an Office document (a Spreadsheet or RichEdit document).

Namespace: DevExpress.Web.Office

Assembly: DevExpress.Web.v19.2.dll

Declaration

public static event DocumentAutoSavingEventHandler AutoSaving

Event Data

The AutoSaving 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

The AutoSaving event allows you to handle auto save operations and resolve multi-user conflicts, if any.

See Also