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.v20.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:

Library Object Type Path to PrintSheetVisibility
WinForms Controls SpreadsheetControlOptions
.Print .PrintSheetVisibility
Office File API DocumentOptions
.Print .PrintSheetVisibility
WorkbookOptions
.Print .PrintSheetVisibility

Remarks

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

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