Articles in this section
Category / Section

How to print the selected range of the cells in the WinForms GridControl?

1 min read

Printing

You can print the selected cell in the WinForms GridControl by setting the PrintRange enumeration of the PrinterSettings as Selection. Then, add the GridPrindDocument to the GridPreviewDialog Document.

Refer to the following code examples to print the selected cells in GridControl.

C#

private void button1_Click(object sender, System.EventArgs e)
{
 GridPrintDocument pd = new GridPrintDocument(this.gridDataBoundGrid1, true);
 PrintPreviewDialog dlg = new PrintPreviewDialog();
 pd.PrinterSettings.PrintRange = System.Drawing.Printing.PrintRange.Selection;
 dlg.Document = pd;
 dlg.ShowDialog();
}

 

VB

Private Sub button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button1.Click
 Dim pd As New GridPrintDocument(Me.gridDataBoundGrid1, True)
 Dim dlg As New PrintPreviewDialog()
 pd.PrinterSettings.PrintRange = System.Drawing.Printing.PrintRange.Selection
 dlg.Document = pd
 dlg.ShowDialog()
End Sub

The following screenshot displays the print preview in GrintControl for selected cells.

Printpreview with selected cells in grid control

Sample:

https://www.syncfusion.com/downloads/support/directtrac/general/WF-14488-How_to_print_selectedcells_in_GridControl1299901831.zip

 

Reference link: https://help.syncfusion.com/windowsforms/grid-control/printing

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied