Interface ExcelColumn
- All Superinterfaces:
ExportColumn<ExcelCell>
ExcelColumn is a specialization of ExportColumn for exporting to the Microsoft Excel format,
offering limited support for Excel-specific styling.
Excel export is backed by Apache POI. For advanced formatting you can call the underlying POI objects directly, obtaining them from the column context.
-
Method Summary
Modifier and TypeMethodDescriptionvoidsetDefaultStyle(ExcelStyle style) Set the default cell style.Methods inherited from interface ExportColumn
getHeaderCell, setRounding
-
Method Details
-
setDefaultStyle
Set the default cell style. The default style is applied to all of the cells in this column that don't have their style set by callingExcelCell.setStyle(ExcelStyle). We recommend that you set the single (or the most frequently used) style as the default column style, instead of applying this style to each cell.- Parameters:
style- The style.
-