Uses of Class
org.apache.poi.sl.usermodel.TableCell.BorderEdge
-
Packages that use TableCell.BorderEdge Package Description org.apache.poi.sl.usermodel -
-
Uses of TableCell.BorderEdge in org.apache.poi.sl.usermodel
Methods in org.apache.poi.sl.usermodel that return TableCell.BorderEdge Modifier and Type Method Description static TableCell.BorderEdge
TableCell.BorderEdge. valueOf(String name)
Returns the enum constant of this type with the specified name.static TableCell.BorderEdge[]
TableCell.BorderEdge. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.poi.sl.usermodel with parameters of type TableCell.BorderEdge Modifier and Type Method Description StrokeStyle
TableCell. getBorderStyle(TableCell.BorderEdge edge)
Return line style of given edge ornull
if border is not definedvoid
TableCell. removeBorder(TableCell.BorderEdge edge)
Remove all line attributes of the given border edgevoid
TableCell. setBorderColor(TableCell.BorderEdge edge, Color color)
Convenience method for setting the border color.void
TableCell. setBorderCompound(TableCell.BorderEdge edge, StrokeStyle.LineCompound compound)
Convenience method for setting the border line compound.void
TableCell. setBorderDash(TableCell.BorderEdge edge, StrokeStyle.LineDash dash)
Convenience method for setting the border line dash.void
TableCell. setBorderStyle(TableCell.BorderEdge edge, StrokeStyle style)
Sets theStrokeStyle
of the given border edge.void
TableCell. setBorderWidth(TableCell.BorderEdge edge, double width)
Convenience method for setting the border width.
-