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

Sheet Interface

An individual sheet in a workbook and a base interface for Worksheet and ChartSheet.

Namespace: DevExpress.Spreadsheet

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

Declaration

public interface Sheet

The following members return Sheet objects:

Library Related API Members
WinForms Controls SpreadsheetControl.ActiveSheet
WPF Controls SpreadsheetControl.ActiveSheet
Office File API SheetCollection.ActiveSheet
SheetCollection.Item[String]

Remarks

The Sheet object is a member of the SheetCollection collection, which contains all sheets in a workbook (both worksheets and chart sheets). You can access an individual sheet by its name or index in the collection. Use the Sheet.SheetType property to get the type of the returned sheet.

To change a specific sheet’s position within a workbook, use one of the following methods: Sheet.MoveToBeginning, Sheet.MoveBefore, Sheet.MoveAfter, or Sheet.MoveToEnd.

See Also