aspnetcore-js-devexpress-dot-richedit-4e3b7ae6.md
Contains data for the Saved event.
export class SavedEventArgs extends EventArgs
The Saved event occurs after a file has been saved. The event handler receives an argument of the SavedEventArgs type. The argument’s properties provide information specific to this event.
EventArgs SavedEventArgs
Gets the reason why the document saving process starts.
reason: string
| Type | Description |
|---|---|
| string |
A value that identifies the reason.
|
The reason property returns the value of the reason parameter specified in the saveDocument method.
Indicates whether the document saving request has succeeded.
success: boolean
| Type | Description |
|---|---|
| boolean |
true if a server returns the status code 200 (The request has succeeded); otherwise, false.
|