Interface ExcelColumn

All Superinterfaces:
ExportColumn<ExcelCell>

@PublicApi public interface ExcelColumn extends 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.

See Also:
  • Method Details

    • setDefaultStyle

      void setDefaultStyle(@Nullable ExcelStyle style)
      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 calling ExcelCell.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.