C:\Perl_PPM\PDF-FromHTML-0.31\blib/lib/PDF/FromHTML/Template/Element/TextBox.pm |
PDF::FromHTML::Template::Element::TextBox
To write text in a specified spot
TEXTBOX
PDF::FromHTML::Template::Element
JUSTIFY is provided for backwards compatibility, and is deprecated.
<font h="8" face="Times-Roman">
<row> <textbox w="100%" h="*4">Some text here</textbox> </row>
</font>
That will create textbox which will occupy four rows of text at whatever size the font is set to.
None
Nothing
ROW
<row h="8"> <textbox w="40%" text="Some text here"/> <textbox w="60%"><var name="Param1"/> and stuff</textbox> </row>
This will put two textboxes on the page at the current Y-position. The first will occupy 40% of the write-able space and contain the text ``Some text here''. The second will occupy the rest and contain the text from Param1, then the text `` and stuff''. (This is the only way to mix parameters and static text in the same textbox.)
Rob Kinyon (rkinyon@columbus.rr.com)
ROW
C:\Perl_PPM\PDF-FromHTML-0.31\blib/lib/PDF/FromHTML/Template/Element/TextBox.pm |