aspnetcore-js-devexpress-dot-richedit-f405976c.md
Contains data for the PdfExporting event.
export class PdfExportingEventArgs extends EventArgs
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.
EventArgs PdfExportingEventArgs
See Also
The document content that is encoded with base64 digits.
base64: string
| Type | Description |
|---|---|
| string |
The file content.
|
The document content in blob representation.
blob: Blob
| Type | Description |
|---|---|
| Blob |
The file content.
|
The document content in blob stream representation.
blobStream: any
| Type | Description |
|---|---|
| any |
The file content.
|
Specifies whether the event is handled on the client side.
handled: boolean
| 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.
|