Uses of Interface
org.apache.poi.ss.usermodel.Font
-
Packages that use Font Package Description org.apache.poi.hssf.usermodel usermodel package maps HSSF low level strutures to familiar workbook/sheet modelorg.apache.poi.ss.usermodel org.apache.poi.ss.util org.apache.poi.xssf.streaming org.apache.poi.xssf.usermodel -
-
Uses of Font in org.apache.poi.hssf.usermodel
Classes in org.apache.poi.hssf.usermodel that implement Font Modifier and Type Class Description class
HSSFFont
Represents a Font used in a workbook.Methods in org.apache.poi.hssf.usermodel with parameters of type Font Modifier and Type Method Description void
HSSFRichTextString. applyFont(int startIndex, int endIndex, Font font)
Applies a font to the specified characters of a string.void
HSSFRichTextString. applyFont(Font font)
Sets the font of the entire string.void
HSSFCellStyle. setFont(Font font)
set the font for this style -
Uses of Font in org.apache.poi.ss.usermodel
Methods in org.apache.poi.ss.usermodel that return Font Modifier and Type Method Description Font
Workbook. createFont()
Create a new Font and add it to the workbook's font tableFont
Workbook. 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 attributesFont
Workbook. getFontAt(int idx)
Get the font at the given index numberFont
Workbook. getFontAt(short idx)
Deprecated.usegetFontAt(int)
Methods in org.apache.poi.ss.usermodel with parameters of type Font Modifier and Type Method Description void
RichTextString. applyFont(int startIndex, int endIndex, Font font)
Applies a font to the specified characters of a string.void
RichTextString. applyFont(Font font)
Sets the font of the entire string.void
CellStyle. setFont(Font font)
set the font for this style -
Uses of Font in org.apache.poi.ss.util
Methods in org.apache.poi.ss.util with parameters of type Font Modifier and Type Method Description static boolean
SheetUtil. canComputeColumnWidth(Font font)
Check if the Fonts are installed correctly so that Java can compute the size of columns.static void
CellUtil. setFont(Cell cell, Font font)
Take a cell, and apply a font to it -
Uses of Font in org.apache.poi.xssf.streaming
Methods in org.apache.poi.xssf.streaming that return Font Modifier and Type Method Description Font
SXSSFWorkbook. createFont()
Create a new Font and add it to the workbook's font tableFont
SXSSFWorkbook. 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 attributesFont
SXSSFWorkbook. getFontAt(int idx)
Font
SXSSFWorkbook. getFontAt(short idx)
Deprecated. -
Uses of Font in org.apache.poi.xssf.usermodel
Classes in org.apache.poi.xssf.usermodel that implement Font Modifier and Type Class Description class
XSSFFont
Represents a font used in a workbook.Methods in org.apache.poi.xssf.usermodel with parameters of type Font Modifier and Type Method Description void
XSSFRichTextString. applyFont(int startIndex, int endIndex, Font font)
Applies a font to the specified characters of a string.void
XSSFRichTextString. applyFont(Font font)
Sets the font of the entire string.void
XSSFCellStyle. setFont(Font font)
Set the font for this style
-