Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

PdfExportingEventArgs Class

Contains data for the PdfExporting event.

#Declaration

TypeScript
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

#Properties

#base64 Property

The document content that is encoded with base64 digits.

#Declaration

TypeScript
base64: string

#Property Value

Type Description
string

The file content.

#blob Property

The document content in blob representation.

#Declaration

TypeScript
blob: Blob

#Property Value

Type Description
Blob

The file content.

#blobStream Property

The document content in blob stream representation.

#Declaration

TypeScript
blobStream: any

#Property Value

Type Description
any

The file content.

#handled Property

Specifies whether the event is handled on the client side.

#Declaration

TypeScript
handled: boolean

#Property Value

Type Description
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.