aspnetcore-js-devexpress-dot-richedit-991edc14.md
Contains data for the Saving event.
export class SavingEventArgs extends EventArgs
The Saving event allows you to save a document. The event handler receives an argument of the SavingEventArgs type. The argument’s properties provide information specific to this event.
EventArgs SavingEventArgs
The file content that is encoded with base64 digits.
base64: string
| Type | Description |
|---|---|
| string |
The file content.
|
The name of the file to save.
fileName: string
| Type | Description |
|---|---|
| string |
The file name.
|
The format of the file to save.
format: DocumentFormat
| Type | Description |
|---|---|
| DocumentFormat |
The document format.
|
Specifies whether the event is handled.
handled: boolean
| Type | Description |
|---|---|
| boolean |
true , if the event is handled and further processing is not required; otherwise false.
|
Specifies the reason why the document saving process starts.
reason: string
| Type | Description |
|---|---|
| string |
A value that identifies the reason.
|