Skip to main content
A newer version of this page is available.
All docs
V19.1
.NET Framework 4.5.2+
Row

WorksheetView.Orientation Property

Gets or sets the page orientation applied when a worksheet is being printed.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v19.1.Core.dll

Declaration

PageOrientation Orientation { get; set; }

Property Value

Type Description
PageOrientation

A PageOrientation enumeration member.

Example

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