Uses of Class
org.apache.poi.hssf.usermodel.HSSFCellStyle
-
Packages that use HSSFCellStyle Package Description org.apache.poi.hssf.usermodel The usermodel package maps HSSF low level structures to familiar workbook/sheet model -
-
Uses of HSSFCellStyle in org.apache.poi.hssf.usermodel
Methods in org.apache.poi.hssf.usermodel that return HSSFCellStyle Modifier and Type Method Description HSSFCellStyle
HSSFCellStyle. copy()
HSSFCellStyle
HSSFWorkbook. createCellStyle()
Create a new Cell style and add it to the workbook's style table.HSSFCellStyle
HSSFCell. getCellStyle()
get the style for the cell.HSSFCellStyle
HSSFWorkbook. getCellStyleAt(int idx)
get the cell style object at the given indexHSSFCellStyle
HSSFSheet. getColumnStyle(int column)
Returns the HSSFCellStyle that applies to the given (0 based) column, or null if no style has been set for that columnHSSFCellStyle
HSSFCellStyle. getParentStyle()
Return the parent style for this cell style.HSSFCellStyle
HSSFRow. getRowStyle()
Returns the whole-row cell styles.Methods in org.apache.poi.hssf.usermodel with parameters of type HSSFCellStyle Modifier and Type Method Description void
HSSFCellStyle. cloneStyleFrom(HSSFCellStyle source)
void
HSSFCell. setCellStyle(HSSFCellStyle style)
void
HSSFRow. setRowStyle(HSSFCellStyle style)
Applies a whole-row cell styling to the row.Constructors in org.apache.poi.hssf.usermodel with parameters of type HSSFCellStyle Constructor Description HSSFCellStyle(HSSFCellStyle other)
-