| ExcelReader Xojo Component |
|
Cell.CellType Enum
A enum that represents different types of cells in the excel document.
Constants
Generic = 0 | Cell type is not one of the special types listed in this enum. |
String = 1 | The cell contains just string |
Date = 2 | The cell contains date which can be read with the DateValue property. The Value property will return the raw Excel date value. |
Custom = 3 | The cell contains custom formatted data, it could be number or data.
Either the Value or the DateValue property will be valid or both. It depends on what is in the FormatCode property of the Format. |
Number = 4 | Cell contains number. |