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

How to: Set Paper Size

Important

You need a license for the DevExpress Office File API Subscription or DevExpress Universal Subscription to use these examples in production code.

This example demonstrates how to set the paper size of worksheet pages via the Worksheet.ActiveView.PaperKind property. The PaperKind enumerator lists available page sizes.

Note

The WorksheetView.PaperKind 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.

// Select the page's paper size.
workbook.Worksheets[0].ActiveView.PaperKind = System.Drawing.Printing.PaperKind.A4;
See Also