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

How to: Export ASPxCardView Data as a PDF

This example demonstrates how to export grid data to a file in PDF format using the ASPxGridBase.ExportPdfToResponse method.

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