PrintOptions Property (PrinterSettings)
Gets the
GrapeCity.ActiveReports.Printing.PrintOptions instance associated with this printer settings.
'Declaration
Public ReadOnly Property PrintOptions As PrintOptions
Property Value
A
GrapeCity.ActiveReports.Printing.PrintOptions object that contains various settings to control the printing process, such as the PageScaling, PagesPerSheet, and PageOrder.
This example demonstrates how to access and modify print options:
var printerSettings = new GrapeCity.ActiveReports.PrinterSettings();
printerSettings.PrintOptions.PagesPerSheet = 2;
printerSettings.PrintOptions.PageScaling = PageScaling.MultiplePages;
printerSettings.PrintOptions.PrintPageBorder = true;