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
Unfortunately, activation email could not send to your email. Please try again.
Syncfusion Feedback

How to print specific pages in WinForms GridControl?

Platform: WinForms |
Control: GridControl
Tags: printing

Print the specific pages

In order to print specific pages of GridControl, the “PagesToPrint” property of GridPrintDocumentAdv can be used. The page numbers can be provided as the list of integer values.

C#

private void btnPrint_Click(object sender, EventArgs e)
{
   GridPrintDocumentAdv pd = new GridPrintDocumentAdv(this.gridControl1);
   PrintPreviewDialog previewDialog = new PrintPreviewDialog();
   //Print particular pages.
   pd.PagesToPrint = new List<int>(new int[] { 1, 3, 5 });
   previewDialog.Document = pd;
   previewDialog.Show();
}

 

VB

private void btnPrint_Click(Object sender, EventArgs e)
   Dim pd As New GridPrintDocumentAdv(Me.gridControl1)
   Dim previewDialog As New PrintPreviewDialog()
   'Print particular pages.
   pd.PagesToPrint = New List(Of Integer)(New Integer() { 1, 3, 5 })
   previewDialog.Document = pd
   previewDialog.Show()
End Sub

 

Samples:

C#: PrintParticularPages_CS

VB: PrintParticularPages_VB

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

2X faster development

The ultimate WinForms UI toolkit to boost your development speed.
ADD COMMENT
You must log in to leave a comment

Please sign in to access our KB

This page will automatically be redirected to the sign-in page in 10 seconds.

Up arrow icon

Warning Icon You are using an outdated version of Internet Explorer that may not display all features of this and other websites. Upgrade to Internet Explorer 8 or newer for a better experience.Close Icon

Live Chat Icon For mobile