Skip to main content
A newer version of this page is available. .

SpreadsheetControl.ActiveSheet Property

Gets the sheet that is currently displayed in the SpreadsheetControl.

Namespace: DevExpress.XtraSpreadsheet

Assembly: DevExpress.XtraSpreadsheet.v19.1.dll

Declaration

[Browsable(false)]
public Sheet ActiveSheet { get; }

Property Value

Type Description
Sheet

A Sheet descendant that specifies the active worksheet or chart sheet.

Remarks

The ActiveSheet property is useful when you need to obtain an active sheet in a workbook containing both worksheets and chart sheets. To get the type of the active sheet, use the Sheet.SheetType property.

You can use one of the following properties to specify an active sheet in code:

An end-user can switch between sheets using the SpreadsheetControl’s Sheet Tab Selector. Before and after an active sheet is changed via the control’s UI, the SpreadsheetControl.ActiveSheetChanging and SpreadsheetControl.ActiveSheetChanged events are raised, respectively.

See Also