Skip to main content
A newer version of this page is available. .

ASPxRichEdit.PdfExported Event

Allows you to save the exported PDF document.

Namespace: DevExpress.Web.ASPxRichEdit

Assembly: DevExpress.Web.ASPxRichEdit.v21.2.dll

NuGet Package: DevExpress.Web.Office

Declaration

public event PdfExportedEventHandler PdfExported

Event Data

The PdfExported event's data class is PdfExportedEventArgs. The following properties provide information specific to this event:

Property Description
Base64 Returns the exported PDF file encoded into Base64.
DocumentID Returns the document’s unique identifier.

Remarks

When the ExportToPdf method is called, the ASPxRichEdit control exports the current document to a portable document format (PDF), invokes the PdfExported event, and sends the resulting PDF file there as the Base64 parameter. Handle the event to save the exported document.

See Also