DBG PDF Export Demo

This sample demonstrates the export of content from griddataboundgrid to a PDF file.It also illustrates support for headers and footers.

Below is an image of a pdf export.

Pdf Export screenshot

Pdf Export

Features

Interactive Features

    		GridPDFConverter converter = new GridPDFConverter(true,true);
                converter.ExportToPdf("Sample.pdf", gridDataBoundGrid1);

                //Header Event to create an header that will displays on each page
                converter.DrawPDFFooter += new GridPDFConverter.DrawPDFHeaderFooterEventHandler(converter_DrawPDFFooter);

               //Footer Event to create an footer that will displays on each page
                converter.DrawPDFHeader += new GridPDFConverter.DrawPDFHeaderFooterEventHandler(converter_DrawPDFHeader);


Below is a sample image of the exported file.

PDF Export screenshot

Pdf Export