[]
Gets the PrintOptions instance associated with this printer settings.
public PrintOptions PrintOptions { get; }
Type | Description |
---|---|
PrintOptions | A PrintOptions object that contains various settings to control the printing process, such as the PageScaling, PagesPerSheet, and PageOrder. |
The 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.
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;