List of usage examples for org.apache.poi.ss.usermodel FillPatternType BIG_SPOTS
FillPatternType BIG_SPOTS
To view the source code for org.apache.poi.ss.usermodel FillPatternType BIG_SPOTS.
Click Source Link
From source file:org.fenixedu.academic.ui.struts.action.administrativeOffice.scholarship.utl.report.ReportStudentsUTLCandidates.java
License:Open Source License
private CellStyle headerBackgroundStyle(final HSSFWorkbook wb) { CellStyle style = wb.createCellStyle(); style.setFillBackgroundColor(IndexedColors.AQUA.getIndex()); style.setFillPattern(FillPatternType.BIG_SPOTS); return style; }