ExcelReader Xojo Component

Cell.CellType Enum

A enum that represents different types of cells in the excel document.

enum Cell.CellType

Constants

Generic = 0Cell type is not one of the special types listed in this enum.
String = 1The cell contains just string
Date = 2The cell contains date which can be read with the DateValue property. The Value property will return the raw Excel date value.
Custom = 3The 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 = 4Cell contains number.