Package io.keikai.doc.io.schema.pdf
Class PDFTableRow
- java.lang.Object
-
- io.keikai.doc.io.schema.pdf.PDFTableRow
-
- All Implemented Interfaces:
IPDFElement
public class PDFTableRow extends java.lang.Object implements IPDFElement
Internal Use Only.Represents a table row in a PDF document.
- Author:
- Jamson Chan
-
-
Constructor Summary
Constructors Constructor Description PDFTableRow()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddCell(PDFTableCell cell)Adds a cell to the row.java.util.List<PDFTableCell>getCells()Returns the cells in the row.floatgetHeight()Returns the height of the row.voidsetHeight(float height)Sets the height of the row.
-
-
-
Method Detail
-
getCells
public java.util.List<PDFTableCell> getCells()
Returns the cells in the row.- Returns:
- the cells in the row.
-
addCell
public void addCell(PDFTableCell cell)
Adds a cell to the row.- Parameters:
cell- the cell to add.
-
getHeight
public float getHeight()
Returns the height of the row.- Returns:
- the height of the row.
-
setHeight
public void setHeight(float height)
Sets the height of the row.- Parameters:
height- the height of the row.
-
-