Back to Devexpress

SavingEventArgs Class

aspnetcore-js-devexpress-dot-richedit-991edc14.md

latest1.7 KB
Original Source

SavingEventArgs Class

Contains data for the Saving event.

Declaration

ts
export class SavingEventArgs extends EventArgs

Remarks

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.

Inheritance

EventArgs SavingEventArgs

Properties

base64 Property

The file content that is encoded with base64 digits.

Declaration

ts
base64: string

Property Value

TypeDescription
string

The file content.

|

fileName Property

The name of the file to save.

Declaration

ts
fileName: string

Property Value

TypeDescription
string

The file name.

|

format Property

The format of the file to save.

Declaration

ts
format: DocumentFormat

Property Value

TypeDescription
DocumentFormat

The document format.

|

handled Property

Specifies whether the event is handled.

Declaration

ts
handled: boolean

Property Value

TypeDescription
boolean

true , if the event is handled and further processing is not required; otherwise false.

|

reason Property

Specifies the reason why the document saving process starts.

Declaration

ts
reason: string

Property Value

TypeDescription
string

A value that identifies the reason.

|