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

How to: Set Page Orientation

Important

You require a license to the DevExpress Office File API or DevExpress Universal Subscription to use these examples in production code. Refer to the DevExpress Subscription page for pricing information.

This example demonstrates how to set the orientation of worksheet pages via the WorksheetView.Orientation property of the worksheet view object that is accessed via the Worksheet.ActiveView. The PageOrientation enumerator lists available page orientation types.

Note

The WorksheetView.Orientation property value is used when worksheet pages are printed. To learn how to specify other worksheet print options, see the How to: Specify Print Settings document.

// Set the page orientation to Landscape.
workbook.Worksheets[0].ActiveView.Orientation = PageOrientation.Landscape;
See Also