PicoXLSX Library Documentation
![]() | CellCellType Enumeration |
Enum defines the basic data types of a cell
Namespace: PicoXLSX
Assembly: PicoXLSX (in PicoXLSX.dll) Version: 2.4.0.0 (2.4.0)

C#
public enum CellType

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 |
