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.
Up arrow icon