[]
Represents a set of worksheets in a workbook.
public interface IWorksheets : IEnumerable<IWorksheet>, IEnumerable
Public Interface IWorksheets
Inherits IEnumerable(Of IWorksheet), IEnumerable
| Name | Description |
|---|---|
| Count | Gets the number of worksheets in the workbook. |
| this[int] | Gets the specified IWorksheet by the zero based index. |
| this[int[]] | Gets the specified IWorksheet objects by the zero based indexes. |
| this[string] | Gets the specified IWorksheet by the worksheet name. |
| this[string[]] | Gets the specified IWorksheet objects by the worksheet names. |
| WorkbookSet | Gets the parent workbook set of this IWorksheets. |
| Name | Description |
|---|---|
| Add(string, int) | Creates a new IWorksheet. |
| Copy(int) | Copies worksheets to the specified position in the IWorksheet collection of the IWorkbook. |
| Delete() | Delete all worksheets. |
| Move(int) | Moves worksheets to the specified position in the IWorksheet collection of the IWorkbook. |
| Select(bool) | Selects all worksheets. |