[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.PrinterSettings.PrintOptions

PrintOptions Property

PrintOptions

Gets the PrintOptions instance associated with this printer settings.

Declaration
public PrintOptions PrintOptions { get; }
Property Value
Type Description
PrintOptions

A PrintOptions object that contains various settings to control the printing process, such as the PageScaling, PagesPerSheet, and PageOrder.

Remarks

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.

Examples

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;