2X faster development
The ultimate WinForms UI toolkit to boost your development speed.
Print the specific pagesIn 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: Reference link: https://help.syncfusion.com/windowsforms/grid-control/printing |
2X faster development
The ultimate WinForms UI toolkit to boost your development speed.
This page will automatically be redirected to the sign-in page in 10 seconds.