officefileapi-devexpress-dot-spreadsheet-5b98e14f.md
An individual sheet in a workbook and a base interface for Worksheet and ChartSheet.
Namespace : DevExpress.Spreadsheet
Assembly : DevExpress.Spreadsheet.v25.2.Core.dll
NuGet Package : DevExpress.Spreadsheet.Core
public interface Sheet
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] |
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