Skip to main content

How to: Export ASPxCardView Data as a PDF

The following example uses the ASPxGridBase.ExportPdfToResponse method to export grid data to a PDF file.

PdfExportOptions options = new PdfExportOptions();
options.Compressed = false;
ASPxCardView1.ExportPdfToResponse(options);