Skip to main content

PdfExportingEventArgs Class

Contains data for the PdfExporting event.

Declaration

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

base64: string

Property Value

Type Description
string

The file content.

blob Property

The document content in blob representation.

Declaration

blob: Blob

Property Value

Type Description
Blob

The file content.

blobStream Property

The document content in blob stream representation.

Declaration

blobStream: any

Property Value

Type Description
any

The file content.

handled Property

Specifies whether the event is handled on the client side.

Declaration

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.