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

SheetView.Orientation Property

Returns or specifies page orientation for a printed sheet.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v21.2.Core.dll

Declaration

PageOrientation Orientation { get; set; }

Property Value

Type Description
PageOrientation

An enumeration member that specifies page orientation.

Remarks

This example demonstrates how to set the orientation of worksheet pages via the Worksheet.ActiveView.Orientation property. 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