|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use BorderStyle | |
---|---|
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.ss.usermodel | |
org.apache.poi.ss.util | |
org.apache.poi.xssf.usermodel | |
org.apache.poi.xssf.usermodel.extensions |
Uses of BorderStyle in org.apache.poi.hssf.converter |
---|
Methods in org.apache.poi.hssf.converter with parameters of type BorderStyle | |
---|---|
static java.lang.String |
AbstractExcelUtils.getBorderStyle(BorderStyle xlsBorder)
|
static java.lang.String |
AbstractExcelUtils.getBorderWidth(BorderStyle xlsBorder)
|
protected void |
ExcelToFoConverter.processCellStyleBorder(HSSFWorkbook workbook,
org.w3c.dom.Element cellTarget,
java.lang.String type,
BorderStyle xlsBorder,
short borderColor)
|
Uses of BorderStyle in org.apache.poi.hssf.usermodel |
---|
Methods in org.apache.poi.hssf.usermodel that return BorderStyle | |
---|---|
BorderStyle |
HSSFBorderFormatting.getBorderBottomEnum()
|
BorderStyle |
HSSFCellStyle.getBorderBottomEnum()
get the type of border to use for the bottom border of the cell |
BorderStyle |
HSSFBorderFormatting.getBorderDiagonalEnum()
|
BorderStyle |
HSSFBorderFormatting.getBorderHorizontalEnum()
HSSF doesn't support table borders, so always NONE |
BorderStyle |
HSSFBorderFormatting.getBorderLeftEnum()
|
BorderStyle |
HSSFCellStyle.getBorderLeftEnum()
get the type of border to use for the left border of the cell |
BorderStyle |
HSSFBorderFormatting.getBorderRightEnum()
|
BorderStyle |
HSSFCellStyle.getBorderRightEnum()
get the type of border to use for the right border of the cell |
BorderStyle |
HSSFBorderFormatting.getBorderTopEnum()
|
BorderStyle |
HSSFCellStyle.getBorderTopEnum()
get the type of border to use for the top border of the cell |
BorderStyle |
HSSFBorderFormatting.getBorderVerticalEnum()
HSSF doesn't support table borders, so always NONE |
Methods in org.apache.poi.hssf.usermodel with parameters of type BorderStyle | |
---|---|
void |
HSSFBorderFormatting.setBorderBottom(BorderStyle border)
|
void |
HSSFCellStyle.setBorderBottom(BorderStyle border)
set the type of border to use for the bottom border of the cell |
void |
HSSFBorderFormatting.setBorderDiagonal(BorderStyle border)
|
void |
HSSFBorderFormatting.setBorderHorizontal(BorderStyle border)
Not available for HSSF. |
void |
HSSFBorderFormatting.setBorderLeft(BorderStyle border)
|
void |
HSSFCellStyle.setBorderLeft(BorderStyle border)
set the type of border to use for the left border of the cell |
void |
HSSFBorderFormatting.setBorderRight(BorderStyle border)
|
void |
HSSFCellStyle.setBorderRight(BorderStyle border)
set the type of border to use for the right border of the cell |
void |
HSSFBorderFormatting.setBorderTop(BorderStyle border)
|
void |
HSSFCellStyle.setBorderTop(BorderStyle border)
set the type of border to use for the top border of the cell |
void |
HSSFBorderFormatting.setBorderVertical(BorderStyle border)
Not available for HSSF. |
Uses of BorderStyle in org.apache.poi.ss.usermodel |
---|
Methods in org.apache.poi.ss.usermodel that return BorderStyle | |
---|---|
BorderStyle |
CellStyle.getBorderBottomEnum()
get the type of border to use for the bottom border of the cell |
BorderStyle |
BorderFormatting.getBorderBottomEnum()
|
BorderStyle |
BorderFormatting.getBorderDiagonalEnum()
|
BorderStyle |
BorderFormatting.getBorderHorizontalEnum()
Only valid for range borders, such as table styles |
BorderStyle |
CellStyle.getBorderLeftEnum()
get the type of border to use for the left border of the cell |
BorderStyle |
BorderFormatting.getBorderLeftEnum()
|
BorderStyle |
CellStyle.getBorderRightEnum()
get the type of border to use for the right border of the cell |
BorderStyle |
BorderFormatting.getBorderRightEnum()
|
BorderStyle |
CellStyle.getBorderTopEnum()
get the type of border to use for the top border of the cell |
BorderStyle |
BorderFormatting.getBorderTopEnum()
|
BorderStyle |
BorderFormatting.getBorderVerticalEnum()
Only valid for range borders, such as table styles |
static BorderStyle |
BorderStyle.valueOf(short code)
|
static BorderStyle |
BorderStyle.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static BorderStyle[] |
BorderStyle.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 BorderStyle | |
---|---|
void |
CellStyle.setBorderBottom(BorderStyle border)
set the type of border to use for the bottom border of the cell |
void |
BorderFormatting.setBorderBottom(BorderStyle border)
Set bottom border. |
void |
BorderFormatting.setBorderDiagonal(BorderStyle border)
Set diagonal border. |
void |
BorderFormatting.setBorderHorizontal(BorderStyle border)
Set range internal horizontal borders. |
void |
CellStyle.setBorderLeft(BorderStyle border)
set the type of border to use for the left border of the cell |
void |
BorderFormatting.setBorderLeft(BorderStyle border)
Set left border. |
void |
CellStyle.setBorderRight(BorderStyle border)
set the type of border to use for the right border of the cell |
void |
BorderFormatting.setBorderRight(BorderStyle border)
Set right border. |
void |
CellStyle.setBorderTop(BorderStyle border)
set the type of border to use for the top border of the cell |
void |
BorderFormatting.setBorderTop(BorderStyle border)
Set top border. |
void |
BorderFormatting.setBorderVertical(BorderStyle border)
Set range internal vertical borders. |
Uses of BorderStyle in org.apache.poi.ss.util |
---|
Methods in org.apache.poi.ss.util that return BorderStyle | |
---|---|
BorderStyle |
PropertyTemplate.getBorderStyle(CellAddress cell,
java.lang.String property)
Retrieves the border style for a given cell |
BorderStyle |
PropertyTemplate.getBorderStyle(int row,
int col,
java.lang.String property)
Retrieves the border style for a given cell |
Methods in org.apache.poi.ss.util with parameters of type BorderStyle | |
---|---|
void |
PropertyTemplate.drawBorders(CellRangeAddress range,
BorderStyle borderType,
BorderExtent extent)
Draws a group of cell borders for a cell range. |
void |
PropertyTemplate.drawBorders(CellRangeAddress range,
BorderStyle borderType,
short color,
BorderExtent extent)
Draws a group of cell borders for a cell range. |
static void |
RegionUtil.setBorderBottom(BorderStyle border,
CellRangeAddress region,
Sheet sheet)
Sets the bottom border style for a region of cells by manipulating the cell style of the individual cells on the bottom |
static void |
RegionUtil.setBorderLeft(BorderStyle border,
CellRangeAddress region,
Sheet sheet)
Sets the left border style for a region of cells by manipulating the cell style of the individual cells on the left |
static void |
RegionUtil.setBorderRight(BorderStyle border,
CellRangeAddress region,
Sheet sheet)
Sets the right border style for a region of cells by manipulating the cell style of the individual cells on the right |
static void |
RegionUtil.setBorderTop(BorderStyle border,
CellRangeAddress region,
Sheet sheet)
Sets the top border style for a region of cells by manipulating the cell style of the individual cells on the top |
Uses of BorderStyle in org.apache.poi.xssf.usermodel |
---|
Methods in org.apache.poi.xssf.usermodel that return BorderStyle | |
---|---|
BorderStyle |
XSSFCellStyle.getBorderBottomEnum()
Get the type of border to use for the bottom border of the cell Will be removed when XSSFCellStyle.getBorderBottom() returns a BorderStyle enum |
BorderStyle |
XSSFBorderFormatting.getBorderBottomEnum()
|
BorderStyle |
XSSFBorderFormatting.getBorderDiagonalEnum()
|
BorderStyle |
XSSFBorderFormatting.getBorderHorizontalEnum()
|
BorderStyle |
XSSFCellStyle.getBorderLeftEnum()
Get the type of border to use for the left border of the cell Will be removed when XSSFCellStyle.getBorderLeft() returns a BorderStyle enum |
BorderStyle |
XSSFBorderFormatting.getBorderLeftEnum()
|
BorderStyle |
XSSFCellStyle.getBorderRightEnum()
Get the type of border to use for the right border of the cell Will be removed when XSSFCellStyle.getBorderRight() returns a BorderStyle enum |
BorderStyle |
XSSFBorderFormatting.getBorderRightEnum()
|
BorderStyle |
XSSFCellStyle.getBorderTopEnum()
Get the type of border to use for the top border of the cell Will be removed when XSSFCellStyle.getBorderTop() returns a BorderStyle enum |
BorderStyle |
XSSFBorderFormatting.getBorderTopEnum()
|
BorderStyle |
XSSFBorderFormatting.getBorderVerticalEnum()
|
Methods in org.apache.poi.xssf.usermodel with parameters of type BorderStyle | |
---|---|
void |
XSSFCellStyle.setBorderBottom(BorderStyle border)
Set the type of border to use for the bottom border of the cell |
void |
XSSFBorderFormatting.setBorderBottom(BorderStyle border)
|
void |
XSSFBorderFormatting.setBorderDiagonal(BorderStyle border)
|
void |
XSSFBorderFormatting.setBorderHorizontal(BorderStyle border)
|
void |
XSSFCellStyle.setBorderLeft(BorderStyle border)
Set the type of border to use for the left border of the cell |
void |
XSSFBorderFormatting.setBorderLeft(BorderStyle border)
|
void |
XSSFCellStyle.setBorderRight(BorderStyle border)
Set the type of border to use for the right border of the cell |
void |
XSSFBorderFormatting.setBorderRight(BorderStyle border)
|
void |
XSSFCellStyle.setBorderTop(BorderStyle border)
Set the type of border to use for the top border of the cell |
void |
XSSFBorderFormatting.setBorderTop(BorderStyle border)
|
void |
XSSFBorderFormatting.setBorderVertical(BorderStyle border)
|
Uses of BorderStyle in org.apache.poi.xssf.usermodel.extensions |
---|
Methods in org.apache.poi.xssf.usermodel.extensions that return BorderStyle | |
---|---|
BorderStyle |
XSSFCellBorder.getBorderStyle(XSSFCellBorder.BorderSide side)
Get the type of border to use for the selected border |
Methods in org.apache.poi.xssf.usermodel.extensions with parameters of type BorderStyle | |
---|---|
void |
XSSFCellBorder.setBorderStyle(XSSFCellBorder.BorderSide side,
BorderStyle style)
Set the type of border to use for the selected border |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |