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

WorkbookPrintOptions.PrintSheetVisibility Property

Gets or sets the visibility of worksheets to be printed.

Namespace: DevExpress.XtraSpreadsheet

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

Declaration

[DefaultValue(WorksheetVisibilityType.Visible)]
[XtraSerializableProperty]
public WorksheetVisibilityType PrintSheetVisibility { get; set; }

Property Value

Type Default Description
WorksheetVisibilityType Visible

An enumeration member that indicates the worksheet visibility.

Property Paths

You can access this nested property as listed below:

Object Type Path to PrintSheetVisibility
DocumentOptions
.Print .PrintSheetVisibility

Remarks

The following code shows how to print only hidden worksheets in a workbook:

workbook.Options.Print.PrintSheetVisibility = WorksheetVisibilityType.Hidden;
See Also