officefileapi-devexpress-dot-spreadsheet-c1b5ab66.md
A collection of all sheets (worksheets and chart sheets) contained in a workbook.
Namespace : DevExpress.Spreadsheet
Assembly : DevExpress.Spreadsheet.v25.2.Core.dll
NuGet Package : DevExpress.Spreadsheet.Core
public interface SheetCollection :
ISimpleCollection<Sheet>,
IEnumerable<Sheet>,
IEnumerable,
ICollection
Public Interface SheetCollection
Inherits ISimpleCollection(Of Sheet),
IEnumerable(Of Sheet),
IEnumerable,
ICollection
The following members return SheetCollection objects:
Use the Workbook.Sheets property to get access to the SheetCollection collection. An individual Sheet can be accessed by its name or index in the collection.
The SheetCollection collection is useful when you need to access a sheet of any type. If you work with sheets of only one type, consider using one of the following collections:
See Also