Example usage for org.apache.poi.xssf.usermodel XSSFTableStyleInfo setName

List of usage examples for org.apache.poi.xssf.usermodel XSSFTableStyleInfo setName

Introduction

In this page you can find the example usage for org.apache.poi.xssf.usermodel XSSFTableStyleInfo setName.

Prototype

public void setName(String name) 

Source Link

Usage

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);
    style.setFirstColumn(false);//from  w w w  .j  av  a2 s . c  o  m
    style.setLastColumn(false);
    style.setShowRowStripes(true);
    style.setShowColumnStripes(false);
}