List of usage examples for org.apache.poi.xssf.usermodel XSSFTableStyleInfo setShowColumnStripes
public void setShowColumnStripes(boolean show)
From source file:de.symeda.sormas.api.doc.XssfHelper.java
License:Open Source License
public static void styleTable(XSSFTable table, int styleNumber) { // Style the table - can this be simplified? table.getCTTable().addNewTableStyleInfo(); String tableStyleName = "TableStyleLight" + styleNumber; table.getCTTable().getTableStyleInfo().setName(tableStyleName); XSSFTableStyleInfo style = (XSSFTableStyleInfo) table.getStyle(); style.setName(tableStyleName);//from w w w. j a va 2s .c om style.setFirstColumn(false); style.setLastColumn(false); style.setShowRowStripes(true); style.setShowColumnStripes(false); }