Uses of Class
org.apache.poi.ss.usermodel.FillPatternType
-
Packages that use FillPatternType 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.xssf.usermodel -
-
Uses of FillPatternType in org.apache.poi.hssf.usermodel
Methods in org.apache.poi.hssf.usermodel that return FillPatternType Modifier and Type Method Description FillPatternType
HSSFCellStyle. getFillPattern()
FillPatternType
HSSFCellStyle. getFillPatternEnum()
Methods in org.apache.poi.hssf.usermodel with parameters of type FillPatternType Modifier and Type Method Description void
HSSFCellStyle. setFillPattern(FillPatternType fp)
setting to one fills the cell with the foreground color... -
Uses of FillPatternType in org.apache.poi.ss.usermodel
Methods in org.apache.poi.ss.usermodel that return FillPatternType Modifier and Type Method Description static FillPatternType
FillPatternType. forInt(int code)
FillPatternType
CellStyle. getFillPattern()
Get the fill patternFillPatternType
CellStyle. getFillPatternEnum()
Deprecated.usegetFillPattern()
insteadstatic FillPatternType
FillPatternType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FillPatternType[]
FillPatternType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.poi.ss.usermodel with parameters of type FillPatternType Modifier and Type Method Description void
CellStyle. setFillPattern(FillPatternType fp)
setting to one fills the cell with the foreground color... -
Uses of FillPatternType in org.apache.poi.xssf.usermodel
Methods in org.apache.poi.xssf.usermodel that return FillPatternType Modifier and Type Method Description FillPatternType
XSSFCellStyle. getFillPattern()
FillPatternType
XSSFCellStyle. getFillPatternEnum()
Methods in org.apache.poi.xssf.usermodel with parameters of type FillPatternType Modifier and Type Method Description void
XSSFCellStyle. setFillPattern(FillPatternType pattern)
This element is used to specify cell fill information for pattern and solid color cell fills.
-