MESCIUS.ActiveReports.Viewer.Common Assembly / GrapeCity.ActiveReports Namespace / PrinterSettings Class / PrintOptions Property
Example

PrintOptions Property (PrinterSettings)
Gets the GrapeCity.ActiveReports.Printing.PrintOptions instance associated with this printer settings.
Syntax
'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.
Remarks
The GrapeCity.ActiveReports.Printing.PrintOptions property allows for detailed customization of the printing process. It provides access to settings that affect how a report is printed. This property is initialized with default print options when the PrinterSettings instance is created. It can be modified to meet specific printing requirements before initiating the print job.
Example
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;
See Also