How to print the selected range of the cells in the WinForms GridControl?
Printing
You can print the selected cell in the WinForms GridControl by setting the PrintRange enumeration of the PrinterSettings as Selection. Then, add the GridPrintDocument to the GridPreviewDialog Document.
Refer to the following code examples to print the selected cells in GridControl.
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();
}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 SubThe following screenshot displays the print preview in GrintControl for selected cells.

Sample: How_to_print_selectedcells_in_GridControl1299901831.zip
Reference Link: Printing