Table with pdfwriter

hi all,

is there a way to do rowspan using table of pdfwriter?

i need to create a table like below:

+--------------------+
 |  MYTABLE  | -> tbl.columns['MYTABLE'] =

PDF::SimpleTable::Column.new(“MYTABLE”) { |col|
±-------------------+ col.heading =
PDF::SimpleTable::Column::Heading.new(“MYTABLE”)
|attr1 val1 | col.heading.justification = :center
|attr2 val2 | }
|attr3 val3 |
| |
| |
±-------------------+

attrN = left alignment
valN = right alignment

:tele

On 6/15/06, tele [email protected] wrote:

is there a way to do rowspan using table of pdfwriter?

Not with SimpleTable. There’s a reason it’s “Simple”. :wink:

If someone wanted to write a module to support the (highly complex)
XHTML table model, I’d happily accept it into the project (license
compatibility, of course).

-austin