[reportlab-users] RE: Table Height

Henning von Bargen reportlab-users@reportlab.com
Fri, 28 Nov 2003 14:34:36 +0100


>     Well, seems i made it by myself, i love IDLE , hehe... i made a =
> table 't'  , just after a t._calc(w,h) I could get the height of the =
> table and of the rows.
> t._rowHeights (returns an array with all the rows' heights)
> t._height (returns the table's height)

Well, this may work now, but using internal variables of another object is a
very bad idea in python.
For example, your solution would not work with my fast LongTable class
because it does not precalculate all heights in advance.

Henning