We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

Printing Contents of a Text Grid

All,

Is it possible to print the text contents of a single grid of text?

Scott Griswold

1 Reply

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

Loader.
Live Chat Icon For mobile
Up arrow icon