Skip to main content
All docs
V25.1
  • ASPxRichEdit.PdfExported Event

    Allows you to save the exported PDF document.

    Namespace: DevExpress.Web.ASPxRichEdit

    Assembly: DevExpress.Web.ASPxRichEdit.v25.1.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