| MultiRow Windows Forms > Developer's Guide > Using MultiRow > Print and Print Preview > Simple Printing |
If you choose to use simple printing, you can easily check printing results without using the .NET Framework print control.
![]() |
Note that with simple printing, you will not be able to get the result of the user's choice from the dialog. Use the .NET Framework print control to get the dialog result or for customization. |
If you execute the GcMultiRow.Print method without any arguments, the system will use its current settings and print the grid.
The code below displays the Print dialog and allows the user to select a printer and then print. You can cancel the print in the middle of the operation.
GcMultiRow1.Print() |
gcMultiRow1.Print(); |
If you wish to print without displaying a dialog, set False in the first argument.
This example prints without displaying a dialog.
GcMultiRow1.Print(False) |
gcMultiRow1.Print(false); |
You can use the GcMultiRow.PageSetup method to display the Page Setup dialog.
This example displays the Page Setup dialog.
GcMultiRow1.PageSetup() |
gcMultiRow1.PageSetup(); |

Use the GcMultiRow.PrintPreview method to display the grid's print preview dialog based on the system settings.
This example uses the PrintPreview method.
GcMultiRow1.PrintPreview() |
gcMultiRow1.PrintPreview(); |
