|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use HSSFCell | |
---|---|
org.apache.poi.hssf.usermodel | usermodel package maps HSSF low level strutures to familiar workbook/sheet model |
org.apache.poi.hssf.util | util package contains tools needed for writing HSSF files that are not necesarily "real" HSSF concepts. |
Uses of HSSFCell in org.apache.poi.hssf.usermodel |
---|
Methods in org.apache.poi.hssf.usermodel with parameters of type HSSFCell | |
---|---|
void |
HSSFRow.moveCell(HSSFCell cell,
short newColumn)
Moves the supplied cell to a new column, which must not already have a cell there! |
void |
HSSFFormulaEvaluator.notifyDeleteCell(HSSFCell cell)
Should be called to tell the cell value cache that the specified cell has just been deleted. |
void |
HSSFFormulaEvaluator.notifyUpdateCell(HSSFCell cell)
Should be called to tell the cell value cache that the specified (value or formula) cell has changed. |
Uses of HSSFCell in org.apache.poi.hssf.util |
---|
Methods in org.apache.poi.hssf.util that return HSSFCell | |
---|---|
static HSSFCell |
HSSFCellUtil.createCell(HSSFRow row,
int column,
java.lang.String value)
Create a cell, and give it a value. |
static HSSFCell |
HSSFCellUtil.createCell(HSSFRow row,
int column,
java.lang.String value,
HSSFCellStyle style)
Creates a cell, gives it a value, and applies a style if provided |
static HSSFCell |
HSSFCellUtil.getCell(HSSFRow row,
int columnIndex)
Get a specific cell from a row. |
static HSSFCell |
HSSFCellUtil.translateUnicodeValues(HSSFCell cell)
Looks for text in the cell that should be unicode, like α and provides the unicode version of it. |
Methods in org.apache.poi.hssf.util with parameters of type HSSFCell | |
---|---|
static void |
HSSFCellUtil.setAlignment(HSSFCell cell,
HSSFWorkbook workbook,
short align)
Take a cell, and align it. |
static void |
HSSFCellUtil.setCellStyleProperty(HSSFCell cell,
HSSFWorkbook workbook,
java.lang.String propertyName,
java.lang.Object propertyValue)
This method attempt to find an already existing HSSFCellStyle that matches what you want the style to be. |
static void |
HSSFCellUtil.setFont(HSSFCell cell,
HSSFWorkbook workbook,
HSSFFont font)
Take a cell, and apply a font to it |
static HSSFCell |
HSSFCellUtil.translateUnicodeValues(HSSFCell cell)
Looks for text in the cell that should be unicode, like α and provides the unicode version of it. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |