Example usage for org.apache.poi.ss.usermodel FillPatternType BIG_SPOTS

List of usage examples for org.apache.poi.ss.usermodel FillPatternType BIG_SPOTS

Introduction

In this page you can find the example usage for org.apache.poi.ss.usermodel FillPatternType BIG_SPOTS.

Prototype

FillPatternType BIG_SPOTS

To view the source code for org.apache.poi.ss.usermodel FillPatternType BIG_SPOTS.

Click Source Link

Document

Large spots

Usage

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;
}