BordersValue

Overview

BordersValue is a class in Aspose.Cells FOSS for Java.

Represents the border values for a cell style, including left, right, top, bottom, and diagonal borders, as well as diagonal direction flags.

This class provides 15 methods for working with BordersValue objects in Java programs. Available methods include: clone, getBottom, getDiagonal, getDiagonalDown, getDiagonalUp, getLeft, getRight, getTop, setBottom, setDiagonal, setDiagonalDown, setDiagonalUp, and 3 additional methods. All exported members are accessible to any Java application after installing the Aspose.Cells FOSS for Java package. Properties: bottom, diagonal, diagonalDown, diagonalUp, left, right, and 1 more.

Properties

NameTypeAccessDescription
leftBorderSideValueReadReturns the left.
rightBorderSideValueReadReturns the right.
topBorderSideValueReadReturns the top.
bottomBorderSideValueReadReturns the bottom.
diagonalBorderSideValueReadReturns the diagonal.
diagonalUpbooleanReadReturns the diagonal up.
diagonalDownbooleanReadReturns the diagonal down.

Methods

SignatureDescription
getLeft()BorderSideValueReturns the left.
setLeft(left: BorderSideValue)Sets the left.
getRight()BorderSideValueReturns the right.
setRight(right: BorderSideValue)Sets the right.
getTop()BorderSideValueReturns the top.
setTop(top: BorderSideValue)Sets the top.
getBottom()BorderSideValueReturns the bottom.
setBottom(bottom: BorderSideValue)Sets the bottom.
getDiagonal()BorderSideValueReturns the diagonal.
setDiagonal(diagonal: BorderSideValue)Sets the diagonal.
getDiagonalUp()booleanReturns the diagonal up.
setDiagonalUp(diagonalUp: boolean)Sets the diagonal up.
getDiagonalDown()booleanReturns the diagonal down.
setDiagonalDown(diagonalDown: boolean)Sets the diagonal down.
clone()BordersValueCreates a copy of this instance.

See Also