Package io.keikai.doc.io.schema.pdf
Class PDFTableRow
java.lang.Object
io.keikai.doc.io.schema.pdf.PDFTableRow
- All Implemented Interfaces:
IPDFElement
Internal Use Only.
Represents a table row in a PDF document.
- Author:
- Jamson Chan
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaddCell(PDFTableCell cell) Adds a cell to the row.getCells()Returns the cells in the row.floatReturns the height of the row.voidsetHeight(float height) Sets the height of the row.
-
Constructor Details
-
PDFTableRow
public PDFTableRow()
-
-
Method Details
-
getCells
Returns the cells in the row.- Returns:
- the cells in the row.
-
addCell
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.
-