Package org.apache.poi.ss.usermodel
Interface DxfCellStyle
-
- All Superinterfaces:
CellStyle
- All Known Implementing Classes:
XSSFDxfCellStyle
public interface DxfCellStyle extends CellStyle
Cell style for Dxfs- Author:
- henri
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BorderStyle
getBorderDiagonal()
get the type of border to use for the diagonal border of the cellBorderStyle
getBorderHorizontal()
get the type of border to use for the horizontal border of the cellBorderStyle
getBorderVertical()
get the type of border to use for the vertical border of the cellshort
getDiagonalBorderColor()
get the color to use for the diagonal borderColor
getDiagonalBorderColorColor()
short
getHorizontalBorderColor()
get the color to use for the horizontal borderColor
getHorizontalBorderColorColor()
short
getVerticalBorderColor()
get the color to use for the vertical borderColor
getVerticalBorderColorColor()
boolean
isShowDiagonalDownBorder()
Whether show diagonalDown diagonal borderboolean
isShowDiagonalUpBorder()
Whether show diagonalUp diagonal bordervoid
setBorderDiagonal(BorderStyle border)
set the type of border to use for the diagonal border of the cellvoid
setBorderHorizontal(BorderStyle border)
set the type of border to use for the horizontal border of the cellvoid
setBorderVertical(BorderStyle border)
set the type of border to use for the horizontal border of the cellvoid
setDiagonalBorderColor(short color)
set the color to use for the diagonal bordervoid
setHorizontalBorderColor(short color)
set the color to use for the horizontal bordervoid
setShowDiagonalDownBorder(boolean down)
Whether show diagonalDown diagonal bordervoid
setShowDiagonalUpBorder(boolean up)
Whether show diagonalUp diagonal bordervoid
setVerticalBorderColor(short color)
set the color to use for the vertical border-
Methods inherited from interface org.apache.poi.ss.usermodel.CellStyle
cloneStyleFrom, getAlignment, getBorderBottom, getBorderLeft, getBorderRight, getBorderTop, getBottomBorderColor, getDataFormat, getDataFormatString, getFillBackgroundColor, getFillBackgroundColorColor, getFillForegroundColor, getFillForegroundColorColor, getFillPattern, getFontIndex, getFontIndexAsInt, getHidden, getIndention, getIndex, getLeftBorderColor, getLocked, getQuotePrefixed, getRightBorderColor, getRotation, getShrinkToFit, getTopBorderColor, getVerticalAlignment, getWrapText, setAlignment, setBorderBottom, setBorderLeft, setBorderRight, setBorderTop, setBottomBorderColor, setDataFormat, setFillBackgroundColor, setFillBackgroundColor, setFillForegroundColor, setFillForegroundColor, setFillPattern, setFont, setHidden, setIndention, setLeftBorderColor, setLocked, setQuotePrefixed, setRightBorderColor, setRotation, setShrinkToFit, setTopBorderColor, setVerticalAlignment, setWrapText
-
-
-
-
Method Detail
-
setBorderHorizontal
void setBorderHorizontal(BorderStyle border)
set the type of border to use for the horizontal border of the cell- Parameters:
border
- type- Since:
- 3.9.5
-
getBorderHorizontal
BorderStyle getBorderHorizontal()
get the type of border to use for the horizontal border of the cell- Returns:
- border type
- Since:
- 3.9.6
-
getHorizontalBorderColorColor
Color getHorizontalBorderColorColor()
- Returns:
- Since:
- 3.9.6
-
setHorizontalBorderColor
void setHorizontalBorderColor(short color)
set the color to use for the horizontal border- Parameters:
color
- The index of the color definition- Since:
- 3.9.6
-
getHorizontalBorderColor
short getHorizontalBorderColor()
get the color to use for the horizontal border- Since:
- 3.9.6
-
setBorderVertical
void setBorderVertical(BorderStyle border)
set the type of border to use for the horizontal border of the cell- Parameters:
border
- type- Since:
- 3.9.5
-
getBorderVertical
BorderStyle getBorderVertical()
get the type of border to use for the vertical border of the cell- Returns:
- border type
- Since:
- 3.9.6
-
getVerticalBorderColorColor
Color getVerticalBorderColorColor()
- Returns:
- Since:
- 3.9.6
-
setVerticalBorderColor
void setVerticalBorderColor(short color)
set the color to use for the vertical border- Parameters:
color
- The index of the color definition- Since:
- 3.9.6
-
getVerticalBorderColor
short getVerticalBorderColor()
get the color to use for the vertical border- Since:
- 3.9.6
-
setBorderDiagonal
void setBorderDiagonal(BorderStyle border)
set the type of border to use for the diagonal border of the cell- Parameters:
border
- type- Since:
- 3.9.5
-
getBorderDiagonal
BorderStyle getBorderDiagonal()
get the type of border to use for the diagonal border of the cell- Returns:
- border type
- Since:
- 3.9.6
-
getDiagonalBorderColorColor
Color getDiagonalBorderColorColor()
- Since:
- 3.9.6
-
setDiagonalBorderColor
void setDiagonalBorderColor(short color)
set the color to use for the diagonal border- Parameters:
color
- The index of the color definition- Since:
- 3.9.6
-
getDiagonalBorderColor
short getDiagonalBorderColor()
get the color to use for the diagonal border- Since:
- 3.9.6
-
isShowDiagonalUpBorder
boolean isShowDiagonalUpBorder()
Whether show diagonalUp diagonal border- Returns:
- Since:
- 3.9.6
-
setShowDiagonalUpBorder
void setShowDiagonalUpBorder(boolean up)
Whether show diagonalUp diagonal border- Since:
- 3.9.6
-
isShowDiagonalDownBorder
boolean isShowDiagonalDownBorder()
Whether show diagonalDown diagonal border- Since:
- 3.9.6
-
setShowDiagonalDownBorder
void setShowDiagonalDownBorder(boolean down)
Whether show diagonalDown diagonal border- Since:
- 3.9.6
-
-