Package com.itextpdf.layout.renderer
Class TableBorderDescriptor
- java.lang.Object
-
- com.itextpdf.layout.renderer.TableBorderDescriptor
-
class TableBorderDescriptor extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description private int
borderIndex
private float
crossCoordinate
private float
mainCoordinateStart
private float[]
mainCoordinateWidths
-
Constructor Summary
Constructors Constructor Description TableBorderDescriptor(int borderIndex, float mainCoordinateStart, float crossCoordinate, float[] mainCoordinateWidths)
Creates a table border descriptor which will be used while drawing the described border.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getBorderIndex()
float
getCrossCoordinate()
float
getMainCoordinateStart()
float[]
getMainCoordinateWidths()
-
-
-
Constructor Detail
-
TableBorderDescriptor
public TableBorderDescriptor(int borderIndex, float mainCoordinateStart, float crossCoordinate, float[] mainCoordinateWidths)
Creates a table border descriptor which will be used while drawing the described border.- Parameters:
borderIndex
- the index of the described bordermainCoordinateStart
- the border's start main-axis coordinatecrossCoordinate
- fixed cross-axis coordinate of the whole bordermainCoordinateWidths
- the sizes (widths or heights) of rows or columns depending on the type of main axis
-
-