04 Table uses the full width
The TableFrame inherits the attribute useFullWidth from the ReportFrame. If this value is set to true the table uses the width of the parent frame (e.g., the printable width of the page).
// Add the table to the report body $table = new ReportLib\TableFrame(); $table->setUseFullWidth(true); $body->addFrame($table); // Add four columns to the table $table->addColumn("frametype", "Frame type", 40.0); $table->addColumn("container", "Container type", 30.0, ‘C’); $table->addColumn("description", "Description", 60.0); $table->addColumn("number", "Number", 20.0, ‘R’);
The library enlarges all columns relative to their original widths. The output of that looks like the following figure.

As you can see the columns are a little bit wider than in the previous example and the table fills the printable area of the paper.