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

WorksheetView.PaperKind Property

Gets or sets a value that specifies the paper size used when a worksheet is being printed.

Namespace: DevExpress.Spreadsheet

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

Declaration

PaperKind PaperKind { get; set; }

Property Value

Type Description
PaperKind

One of the PaperKind enumeration values.

Example

This example demonstrates how to set the paper size of worksheet pages via the WorksheetView.PaperKind property of the worksheet view object accessed via Worksheet.ActiveView. 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