Excel |
The ExcelWorksheet type exposes the following members.
Name | Description | |
---|---|---|
![]() | Cells | Gets CellRange with all the cells in the worksheet. |
![]() | Columns | Gets collection of all columns in the worksheet. |
![]() | DefaultColumnWidth | Gets or sets default column width. |
![]() | HeadersFooters | Gets or sets headers/footers for the sheet. |
![]() | Name | Gets or sets worksheet name. |
![]() | Pictures | Gets ExcelPictureCollection containing images. |
![]() | PrintOptions | Contains print related options. |
![]() | Protected | Gets or sets the worksheet protection flag. |
![]() | Rows | Gets collection of all rows in the worksheet. |
![]() | ViewOptions | Contains view related options. |
![]() | Visibility | Gets or sets the worksheet visible property. |
Name | Description | |
---|---|---|
![]() | CalculateMaxUsedColumns | Finds the number of columns used. |
![]() | Delete | Deletes this worksheet from the workbook. |
![]() | Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) |
![]() | GetHashCode | Serves as the default hash function. (Inherited from Object) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object) |
![]() | GetUsedCellRange | Calculates cell range that is used in the worksheet. |
![]() | InsertCopy | Inserts a copy of an existing worksheet before the current worksheet. |
![]() | InsertEmpty | Inserts an empty worksheet before the current worksheet. |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object) |
A specific cell (ExcelCell) can be accessed either trough ExcelRow.Cells, ExcelColumn.Cells or ExcelWorksheet.Cells property. Anyway, you can access the cell by the index or by the cell name (for example, "A1").