Safe Haskell | None |
---|---|
Language | Haskell2010 |
Codec.Xlsx.Types.Cell
- data CellFormula = NormalCellFormula {}
- simpleCellFormula :: Text -> CellFormula
- data Cell = Cell {}
- cellStyle :: Lens' Cell (Maybe Int)
- cellValue :: Lens' Cell (Maybe CellValue)
- cellComment :: Lens' Cell (Maybe Comment)
- cellFormula :: Lens' Cell (Maybe CellFormula)
- type CellMap = Map (Int, Int) Cell
Documentation
data CellFormula #
Formula for the cell.
TODO: array. dataTable and shared formula types support
See 18.3.1.40 "f (Formula)" (p. 1636)
Constructors
NormalCellFormula | |
Fields
|
Instances
simpleCellFormula :: Text -> CellFormula #
Currently cell details include cell values, style ids and cell
formulas (inline strings from <is>
subelements are ignored)
Constructors
Cell | |
Fields |
cellFormula :: Lens' Cell (Maybe CellFormula) #