Back to Devexpress

PdfExportingEventArgs Class

aspnetcore-js-devexpress-dot-richedit-f405976c.md

latest1.6 KB
Original Source

PdfExportingEventArgs Class

Contains data for the PdfExporting event.

Declaration

ts
export class PdfExportingEventArgs extends EventArgs

Remarks

The PdfExporting event allows you to save an exported PDF document. The event handler receives an argument of the PdfExportingEventArgs type. The argument’s properties provide information specific to this event.

Inheritance

EventArgs PdfExportingEventArgs

See Also

Export to PDF

Properties

base64 Property

The document content that is encoded with base64 digits.

Declaration

ts
base64: string

Property Value

TypeDescription
string

The file content.

|

blob Property

The document content in blob representation.

Declaration

ts
blob: Blob

Property Value

TypeDescription
Blob

The file content.

|

blobStream Property

The document content in blob stream representation.

Declaration

ts
blobStream: any

Property Value

TypeDescription
any

The file content.

|

handled Property

Specifies whether the event is handled on the client side.

Declaration

ts
handled: boolean

Property Value

TypeDescription
boolean

true , if the event is handled on the client side and further server processing is not required; false , to process the exported PDF document on the server.

|