Example usage for org.apache.poi.xssf.usermodel.extensions XSSFCellAlignment XSSFCellAlignment

List of usage examples for org.apache.poi.xssf.usermodel.extensions XSSFCellAlignment XSSFCellAlignment

Introduction

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

Prototype

public XSSFCellAlignment(CTCellAlignment cellAlignment) 

Source Link

Document

Creates a Cell Alignment from the supplied XML definition

Usage

From source file:com.miraisolutions.xlconnect.XCellStyle.java

License:Open Source License

private XSSFCellAlignment getCellAlignment() {
    if (cellAlignment == null) {
        cellAlignment = new XSSFCellAlignment(getCTCellAlignment());
    }/*from   w  w w . j a  va2 s .  co m*/
    return cellAlignment;
}