NanoXLSX Library Documentation
![]() | CellCellType Enumeration |
Enum defines the basic data types of a cell
Namespace: NanoXLSX
Assembly: NanoXLSX (in NanoXLSX.dll) Version: 1.2.3.0 (1.2.3)
SyntaxC#
public enum CellType
Members| Member name | Value | Description | |
|---|---|---|---|
| STRING | 0 | Type for single characters and strings | |
| NUMBER | 1 | Type for all numeric types (long, integer and float and double) | |
| DATE | 2 | Type for dates and times (Note: Dates before 1900-01-01 are not allowed) | |
| BOOL | 3 | Type for boolean | |
| FORMULA | 4 | Type for Formulas (The cell will be handled differently) | |
| EMPTY | 5 | Type for empty cells. This type is only used for merged cells (all cells except the first of the cell range) | |
| DEFAULT | 6 | Default Type, not specified |
See Also