| Package | Description |
|---|---|
| org.apache.poi.sl.usermodel |
| Modifier and Type | Method and 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.
|
| Modifier and Type | Method and Description |
|---|---|
StrokeStyle |
TableCell.getBorderStyle(TableCell.BorderEdge edge)
Return line style of given edge or
null if border is not defined |
void |
TableCell.removeBorder(TableCell.BorderEdge edge)
Remove all line attributes of the given border edge
|
void |
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 the
StrokeStyle of the given border edge. |
void |
TableCell.setBorderWidth(TableCell.BorderEdge edge,
double width)
Convenience method for setting the border width.
|