Interface ICellPadding
- All Known Implementing Classes:
CellPadding
public interface ICellPadding
Represents the cell padding.
ICellPadding padding = new CellPadding(10, 20, 10, 5);
int left = padding.getLeft();
-
Method Summary
int
Gets the bottom cell padding.
int
Gets the left cell padding.
int
Gets the right cell padding.
int
Gets the top cell padding.
-
Method Details
-
getLeft
int getLeft()
Gets the left cell padding.
ICellPadding padding = new CellPadding(10, 20, 10, 5);
int left = padding.getLeft();
- Returns:
- The left padding of the cell.
-
getRight
int getRight()
Gets the right cell padding.
ICellPadding padding = new CellPadding(10, 20, 10, 5);
int right = padding.getRight();
- Returns:
- The right padding of the cell.
-
getTop
int getTop()
Gets the top cell padding.
ICellPadding padding = new CellPadding(10, 20, 10, 5);
int top = padding.getTop();
- Returns:
- The top padding of the cell.
-
getBottom
int getBottom()
Gets the bottom cell padding.
ICellPadding padding = new CellPadding(10, 20, 10, 5);
int bottom = padding.getBottom();
- Returns:
- The bottom padding of the cell.