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

Worksheet.ActiveView Property

Provides access to an object that contains options to display and print a worksheet.

Namespace: DevExpress.Spreadsheet

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

NuGet Package: DevExpress.Spreadsheet.Core

#Declaration

WorksheetView ActiveView { get; }

#Property Value

Type Description
WorksheetView

A WorksheetView object.

#Remarks

Use the WorksheetView object’s members to specify the visibility of gridlines (WorksheetView.ShowGridlines), show or hide row and column headings (WorksheetView.ShowHeadings), zoom a worksheet view (WorksheetView.Zoom), select a worksheet tab color (WorksheetView.TabColor) and view type (WorksheetView.ViewType), and change print settings (WorksheetView.Orientation, WorksheetView.Margins and WorksheetView.PaperKind). To access more print-specific options, use the WorksheetPrintOptions object returned by Worksheet.PrintOptions. See the How to: Specify Print Settings example for details.

For example, the image below shows the worksheet when gridlines are displayed, and when gridlines are hidden in the SpreadsheetControl.

SpreadsheetControl_Worksheet_ActiveView_ShowGridlines

See Also