Class 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
      void addCell​(PDFTableCell cell)
      Adds a cell to the row.
      java.util.List<PDFTableCell> getCells()
      Returns the cells in the row.
      float getHeight()
      Returns the height of the row.
      void setHeight​(float height)
      Sets the height of the row.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • PDFTableRow

        public PDFTableRow()
    • 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.