source: branches/version-2_11-dev/data/module/fpdf/doc/write.htm @ 20993

Revision 20993, 1.6 KB checked in by Seasoft, 13 years ago (diff)

#1374 (依存ライブラリのアップデート)

  • FPDF 1.6 -> 1.7
  • FPDI 1.4 -> 1.4.1 (配置パスをFPDFから分離)
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2<html>
3<head>
4<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
5<title>Write</title>
6<link type="text/css" rel="stylesheet" href="../fpdf.css">
7</head>
8<body>
9<h1>Write</h1>
10<code>Write(<b>float</b> h, <b>string</b> txt [, <b>mixed</b> link])</code>
11<h2>Description</h2>
12This method prints text from the current position. When the right margin is reached (or the \n
13character is met) a line break occurs and text continues from the left margin. Upon method exit,
14the current position is left just at the end of the text.
15<br>
16It is possible to put a link on the text.
17<h2>Parameters</h2>
18<dl class="param">
19<dt><code>h</code></dt>
20<dd>
21Line height.
22</dd>
23<dt><code>txt</code></dt>
24<dd>
25String to print.
26</dd>
27<dt><code>link</code></dt>
28<dd>
29URL or identifier returned by AddLink().
30</dd>
31</dl>
32<h2>Example</h2>
33<div class="doc-source">
34<pre><code>// Begin with regular font
35$pdf-&gt;SetFont('Arial','',14);
36$pdf-&gt;Write(5,'Visit ');
37// Then put a blue underlined link
38$pdf-&gt;SetTextColor(0,0,255);
39$pdf-&gt;SetFont('','U');
40$pdf-&gt;Write(5,'www.fpdf.org','http://www.fpdf.org');</code></pre>
41</div>
42<h2>See also</h2>
43<a href="setfont.htm">SetFont()</a>,
44<a href="settextcolor.htm">SetTextColor()</a>,
45<a href="addlink.htm">AddLink()</a>,
46<a href="multicell.htm">MultiCell()</a>,
47<a href="setautopagebreak.htm">SetAutoPageBreak()</a>.
48<hr style="margin-top:1.5em">
49<div style="text-align:center"><a href="index.htm">Index</a></div>
50</body>
51</html>
Note: See TracBrowser for help on using the repository browser.