Uses of Interface
org.apache.poi.ss.usermodel.CellStyle
-
Packages that use CellStyle Package Description io.keikai.range.impl.imexp Keikai Spreadsheet Internal Range API Implementation classes.org.apache.poi.hssf.usermodel The usermodel package maps HSSF low level structures to familiar workbook/sheet modelorg.apache.poi.ss.usermodel org.apache.poi.ss.util org.apache.poi.xssf.usermodel -
-
Uses of CellStyle in io.keikai.range.impl.imexp
Fields in io.keikai.range.impl.imexp with type parameters of type CellStyle Modifier and Type Field Description protected Map<SCellStyle,CellStyle>
AbstractExcelExporter. styleTable
The map stores the exportedCellStyle
during exporting, so that we can reuse them for exporting other cells.Methods in io.keikai.range.impl.imexp that return CellStyle Modifier and Type Method Description protected CellStyle
AbstractExcelExporter. toPOICellStyle(SCellStyle cellStyle)
protected CellStyle
AbstractExcelExporter. toPOIDefaultCellStyle(SCellStyle cellStyle)
protected CellStyle
ExcelXlsxExporter. toPOIDefaultCellStyle(SCellStyle cellStyle)
Methods in io.keikai.range.impl.imexp with parameters of type CellStyle Modifier and Type Method Description protected SCellStyle
AbstractExcelImporter. importCellStyle(CellStyle poiCellStyle)
Convert CellStyle into NCellStyleprotected SCellStyle
AbstractExcelImporter. importCellStyle(CellStyle poiCellStyle, boolean inStyleTable)
protected SFont
AbstractExcelImporter. importFont(CellStyle poiCellStyle)
static void
BookHelper. setBottomBorderColor(CellStyle style, Color color)
static void
BookHelper. setFillBackgroundColor(CellStyle newCellStyle, Color xlsColor)
static void
BookHelper. setFillForegroundColor(CellStyle newCellStyle, Color xlsColor)
static void
BookHelper. setLeftBorderColor(CellStyle style, Color color)
static void
BookHelper. setRightBorderColor(CellStyle style, Color color)
static void
BookHelper. setTopBorderColor(CellStyle style, Color color)
-
Uses of CellStyle in org.apache.poi.hssf.usermodel
Classes in org.apache.poi.hssf.usermodel that implement CellStyle Modifier and Type Class Description class
HSSFCellStyle
High level representation of the style of a cell in a sheet of a workbook.Methods in org.apache.poi.hssf.usermodel with parameters of type CellStyle Modifier and Type Method Description void
HSSFCellStyle. cloneStyleFrom(CellStyle source)
Clones all the style information from another HSSFCellStyle, onto this one.void
HSSFCell. setCellStyle(CellStyle style)
Set the style for the cell.void
HSSFSheet. setDefaultColumnStyle(int column, CellStyle style)
Sets the default column style for a given column.void
HSSFRow. setRowStyle(CellStyle style)
Applies a whole-row cell styling to the row. -
Uses of CellStyle in org.apache.poi.ss.usermodel
Subinterfaces of CellStyle in org.apache.poi.ss.usermodel Modifier and Type Interface Description interface
DxfCellStyle
Cell style for Dxfsinterface
NamedStyle
CellStyle with a name.Methods in org.apache.poi.ss.usermodel that return CellStyle Modifier and Type Method Description CellStyle
Workbook. createCellStyle()
Create a new Cell style and add it to the workbook's style tableCellStyle
Cell. getCellStyle()
Return the cell's style.CellStyle
Workbook. getCellStyleAt(int idx)
Get the cell style object at the given indexCellStyle
Sheet. getColumnStyle(int column)
Returns the CellStyle that applies to the given (0 based) column, or null if no style has been set for that columnCellStyle
CellCopyContext. getMappedStyle(CellStyle srcStyle)
CellStyle
Row. getRowStyle()
Returns the whole-row cell styles.Methods in org.apache.poi.ss.usermodel with parameters of type CellStyle Modifier and Type Method Description void
CellStyle. cloneStyleFrom(CellStyle source)
Clones all the style information from another CellStyle, onto this one.static ExcelNumberFormat
ExcelNumberFormat. from(CellStyle style)
CellStyle
CellCopyContext. getMappedStyle(CellStyle srcStyle)
void
CellCopyContext. putMappedStyle(CellStyle srcStyle, CellStyle mappedStyle)
void
Cell. setCellStyle(CellStyle style)
Set the style for the cell.void
Sheet. setDefaultColumnStyle(int column, CellStyle style)
Sets the default column style for a given column.void
Row. setRowStyle(CellStyle style)
Applies a whole-row cell styling to the row.Method parameters in org.apache.poi.ss.usermodel with type arguments of type CellStyle Modifier and Type Method Description static void
RangeCopier. cloneCellContent(Cell srcCell, Cell destCell, Map<Integer,CellStyle> styleMap)
-
Uses of CellStyle in org.apache.poi.ss.util
Methods in org.apache.poi.ss.util with parameters of type CellStyle Modifier and Type Method Description static Cell
CellUtil. createCell(Row row, int column, String value, CellStyle style)
Creates a cell, gives it a value, and applies a style if provided -
Uses of CellStyle in org.apache.poi.xssf.usermodel
Classes in org.apache.poi.xssf.usermodel that implement CellStyle Modifier and Type Class Description class
org.apache.poi.xssf.usermodel.XSSFCellStyle
class
XSSFDxfCellStyle
Cell style for Dxfsclass
XSSFNamedStyle
Methods in org.apache.poi.xssf.usermodel with parameters of type CellStyle Modifier and Type Method Description static void
XSSFWorkbookHelper. addDefaultCellStyle(org.apache.poi.xssf.usermodel.XSSFWorkbook workbook, CellStyle cellStyle)
void
XSSFNamedStyle. cloneStyleFrom(CellStyle source)
-