Skip to main content
A newer version of this page is available. .

SchedulerPrintStyle.PageSettings Property

Gets or sets the page settings for this print style.

Namespace: DevExpress.XtraScheduler.Printing

Assembly: DevExpress.XtraScheduler.v19.2.dll

Declaration

[Browsable(false)]
public PageSettings PageSettings { get; set; }

Property Value

Type Description
PageSettings

A PageSettings object which contains the page settings for this print style.

Remarks

By default the page settings are obtained from the corresponding PrintingSystem object.

Example

This code snippet obtains the DailyPrintStyle from the SchedulerControl.PrintStyles collection, changes its print color scheme to Grayscale and the page orientation to Landscape and subsequently specifies the modified style as the default print style. To verify changes, you are prompted to invoke the Print Preview window using the command button in the Ribbon UI.

DailyPrintStyle printStyle = (DailyPrintStyle)schedulerControl1.PrintStyles[SchedulerPrintStyleKind.Daily];
printStyle.ColorConverter = PrintColorConverter.GrayScaleColor;  
printStyle.PageSettings.Landscape = true;
schedulerControl1.ActivePrintStyle = printStyle;
MessageBox.Show("Click Print Preview to show the printout using the customized DailyPrintStyle.", "Info");
See Also