Package | Description |
---|---|
org.apache.poi.hssf.converter | |
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.
|
Modifier and Type | Method and Description |
---|---|
protected void |
ExcelToFoConverter.processCellStyleFont(HSSFWorkbook workbook,
org.w3c.dom.Element blockTarget,
HSSFFont font) |
Modifier and Type | Method and Description |
---|---|
HSSFFont |
HSSFWorkbook.createFont()
create a new Font and add it to the workbook's font table
|
HSSFFont |
HSSFWorkbook.findFont(boolean bold,
short color,
short fontHeight,
java.lang.String name,
boolean italic,
boolean strikeout,
short typeOffset,
byte underline)
Finds a font that matches the one with the supplied attributes
|
HSSFFont |
HSSFWorkbook.findFont(short boldWeight,
short color,
short fontHeight,
java.lang.String name,
boolean italic,
boolean strikeout,
short typeOffset,
byte underline)
Deprecated.
3.15 beta 2. Use
HSSFWorkbook.findFont(boolean, short, short, String, boolean, boolean, short, byte) instead. |
HSSFFont |
HSSFCellStyle.getFont(Workbook parentWorkbook)
gets the font for this style
|
HSSFFont |
HSSFWorkbook.getFontAt(short idx)
Get the font at the given index number
|
Modifier and Type | Method and Description |
---|---|
void |
HSSFCellStyle.setFont(HSSFFont font) |
Modifier and Type | Method and Description |
---|---|
static void |
HSSFCellUtil.setFont(HSSFCell cell,
HSSFWorkbook workbook,
HSSFFont font)
Deprecated.
3.15 beta2. Removed in 3.17. Use
CellUtil.setFont(org.apache.poi.ss.usermodel.Cell, org.apache.poi.ss.usermodel.Workbook, org.apache.poi.ss.usermodel.Font) instead. |
Copyright 2017 The Apache Software Foundation or its licensors, as applicable.