HA
haneefm
Syncfusion Team
May 3, 2007 07:00 PM UTC
Hi Scott,
You can try this code snippet to print the grid control.
GridPrintDocument pd = new GridPrintDocument(gridControl1, true); //Assumes the default printer
PrintPreviewDialog dlg = new PrintPreviewDialog() ;
dlg.Document = pd;
dlg.ShowDialog();
Best regards,
Haneef