Hoogle Search
Within LTS Haskell 24.34 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
formatPivotButton :: Lens' Format (Maybe Bool)xlsx Codec.Xlsx.Formatted No documentation available.
formatProtection :: Lens' Format (Maybe Protection)xlsx Codec.Xlsx.Formatted No documentation available.
formatQuotePrefix :: Lens' Format (Maybe Bool)xlsx Codec.Xlsx.Formatted No documentation available.
formatWorkbook :: [(Text, Map (RowIndex, ColumnIndex) FormattedCell)] -> StyleSheet -> Xlsxxlsx Codec.Xlsx.Formatted Build an Xlsx, render provided cells as per the StyleSheet.
formatted :: Map (RowIndex, ColumnIndex) FormattedCell -> StyleSheet -> Formattedxlsx Codec.Xlsx.Formatted Higher level API for creating formatted documents Creating formatted Excel spreadsheets using the Cell datatype directly, even with the support for the StyleSheet datatype, is fairly painful. This has a number of causes:
- The Cell datatype wants an Int for the style, which is supposed to point into the _styleSheetCellXfs part of a stylesheet. However, this can be difficult to work with, as it requires manual tracking of cell style IDs, which in turns requires manual tracking of font IDs, border IDs, etc.
- Row-span and column-span properties are set on the worksheet as a whole (wsMerges) rather than on individual cells.
- Excel does not correctly deal with borders on cells that span multiple columns or rows. Instead, these rows must be set on all the edge cells in the block. Again, this means that this becomes a global property of the spreadsheet rather than properties of individual cells.
formattedCell :: Lens' FormattedCell Cellxlsx Codec.Xlsx.Formatted No documentation available.
formattedCellMap :: Formatted -> CellMapxlsx Codec.Xlsx.Formatted formattedColSpan :: Lens' FormattedCell Intxlsx Codec.Xlsx.Formatted No documentation available.
formattedFormat :: Lens' FormattedCell Formatxlsx Codec.Xlsx.Formatted No documentation available.
formattedMerges :: Formatted -> [Range]xlsx Codec.Xlsx.Formatted The final list of cell merges; see _wsMerges