Uses of Class
com.lowagie.text.Table

Packages that use Table
  • Uses of Table in com.lowagie.text

    Methods in com.lowagie.text that return Table
    Modifier and Type
    Method
    Description
    SimpleTable.createTable()
    Creates a Table object based on this TableAttributes object.
    Methods in com.lowagie.text with parameters of type Table
    Modifier and Type
    Method
    Description
    void
    Table.insertTable(Table aTable)
    To put a table within the existing table at the current position generateTable will of course re-arrange the widths of the columns.
    void
    Table.insertTable(Table aTable, int row, int column)
    To put a table within the existing table at the given position generateTable will of course re-arrange the widths of the columns.
    void
    Table.insertTable(Table aTable, Point aLocation)
    To put a table within the existing table at the given position generateTable will of course re-arrange the widths of the columns.
    Constructors in com.lowagie.text with parameters of type Table
    Modifier
    Constructor
    Description
     
    Copy constructor (shallow copy).
  • Uses of Table in com.lowagie.text.factories

    Methods in com.lowagie.text.factories that return Table
    Modifier and Type
    Method
    Description
    static Table
    ElementFactory.getTable(Properties attributes)
    Creates an Table object based on a list of properties.
  • Uses of Table in com.lowagie.text.pdf

    Fields in com.lowagie.text.pdf declared as Table
    Modifier and Type
    Field
    Description
    protected Table
    PdfTable.table
    Original table used to build this object
    Methods in com.lowagie.text.pdf with parameters of type Table
    Modifier and Type
    Method
    Description
    private void
    PdfDocument.addPdfTable(Table t)
    Adds a new table to the document.
    (package private) float
    PdfDocument.bottom(Table table)
    Returns the bottomvalue of a Table if it were added to this document.
    boolean
    PdfWriter.fitsPage(Table table)
    Checks if a Table fits the current page of the PdfDocument.
    boolean
    PdfWriter.fitsPage(Table table, float margin)
    Checks if a Table fits the current page of the PdfDocument.
    Constructors in com.lowagie.text.pdf with parameters of type Table
    Modifier
    Constructor
    Description
    (package private)
    PdfTable(Table table, float left, float right, float top)
    Constructs a PdfTable-object.