Skip to content

Instantly share code, notes, and snippets.

@ssaurel
Created February 26, 2018 13:58
Show Gist options
  • Save ssaurel/94ce4704c6419980c121b176b8be0200 to your computer and use it in GitHub Desktop.
Save ssaurel/94ce4704c6419980c121b176b8be0200 to your computer and use it in GitHub Desktop.
Create a cell style for the Excel tutorial on the SSaurel's Channel
Font headerFont = workbook.createFont();
headerFont.setBold(true);
headerFont.setFontHeightInPoints((short) 14);
headerFont.setColor(IndexedColors.RED.getIndex());
CellStyle headerCellStyle = workbook.createCellStyle();
headerCellStyle.setFont(headerFont);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment