12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <HTML>
- <HEAD>
- <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
- <TITLE>MultiCell</TITLE>
- <LINK TYPE="text/css" REL="stylesheet" HREF="../fpdf.css">
- </HEAD>
- <BODY>
- <H2>MultiCell</H2>
- <TT>MultiCell(<B>float</B> w, <B>float</B> h, <B>string</B> txt [, <B>mixed</B> border [, <B>string</B> align [, <B>int</B> fill]]])</TT>
- <H4 CLASS='st'>Version</H4>
- 1.3
- <H4 CLASS='st'>Description</H4>
- This method allows printing text with line breaks. They can be automatic (as soon as the
- text reaches the right border of the cell) or explicit (via the \n character). As many cells
- as necessary are output, one below the other.
- <BR>
- Text can be aligned, centered or justified. The cell block can be framed and the background
- painted.
- <H4 CLASS='st'>Parameters</H4>
- <TT><U>w</U></TT>
- <BLOCKQUOTE>
- Width of cells. If <TT>0</TT>, they extend up to the right margin of the page.
- </BLOCKQUOTE>
- <TT><U>h</U></TT>
- <BLOCKQUOTE>
- Height of cells.
- </BLOCKQUOTE>
- <TT><U>txt</U></TT>
- <BLOCKQUOTE>
- String to print.
- </BLOCKQUOTE>
- <TT><U>border</U></TT>
- <BLOCKQUOTE>
- Indicates if borders must be drawn around the cell block. The value can be either a number:
- <UL>
- <LI><TT>0</TT>: no border
- <LI><TT>1</TT>: frame
- </UL>
- or a string containing some or all of the following characters (in any order):
- <UL>
- <LI><TT>L</TT>: left
- <LI><TT>T</TT>: top
- <LI><TT>R</TT>: right
- <LI><TT>B</TT>: bottom
- </UL>
- Default value: <TT>0</TT>.
- </BLOCKQUOTE>
- <TT><U>align</U></TT>
- <BLOCKQUOTE>
- Sets the text alignment. Possible values are:
- <UL>
- <LI><TT>L</TT>: left alignment
- <LI><TT>C</TT>: center
- <LI><TT>R</TT>: right alignment
- <LI><TT>J</TT>: justification (default value)
- </UL>
- </BLOCKQUOTE>
- <TT><U>fill</U></TT>
- <BLOCKQUOTE>
- Indicates if the cell background must be painted (<TT>1</TT>) or transparent (<TT>0</TT>).
- Default value: <TT>0</TT>.
- </BLOCKQUOTE>
- <H4 CLASS='st'>See also</H4>
- <A HREF="setfont.htm">SetFont()</A>,
- <A HREF="setdrawcolor.htm">SetDrawColor()</A>,
- <A HREF="setfillcolor.htm">SetFillColor()</A>,
- <A HREF="settextcolor.htm">SetTextColor()</A>,
- <A HREF="setlinewidth.htm">SetLineWidth()</A>,
- <A HREF="cell.htm">Cell()</A>,
- <A HREF="write.htm">Write()</A>,
- <A HREF="setautopagebreak.htm">SetAutoPageBreak()</A>.
- <HR STYLE="margin-top:1.2em">
- <DIV ALIGN="CENTER"><A HREF="index.htm">Index</A></DIV>
- </BODY>
- </HTML>
|