Skip to main content
Row

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

WorksheetPrintOptions.PageOrder Property

Gets or sets the order in which worksheet pages are numbered and printed.

Namespace: DevExpress.Spreadsheet

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

NuGet Package: DevExpress.Spreadsheet.Core

#Declaration

PageOrder PageOrder { get; set; }

#Property Value

Type Description
PageOrder

A PageOrder enumeration member.

Available values:

Name Description
DownThenOver

Worksheet pages are numbered and printed from the top down and then left to right.

OverThenDown

Worksheet pages are numbered and printed from left to right and then from the top down.

#Property Paths

You can access this nested property as listed below:

Object Type Path to PageOrder
Worksheet
.PrintOptions .PageOrder

#Remarks

Use the PageOrder property to specify whether worksheet pages should be numbered and printed from the top down and then left to right (PageOrder.DownThenOver) or from left to right and then from the top down (PageOrder.OverThenDown). This property takes effect when the worksheet data does not fit on one page.

SpreadsheetControl_WorksheetPrintOptions_PageOrder

For more information on print options, see the How to: Specify Print Settings example.

See Also