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

Worksheet.ActiveView Property

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

Namespace: DevExpress.Spreadsheet

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

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