source: trunk/client/inc/hpdf/_fpdf/doc/text.htm@ 2

Last change on this file since 2 was 2, checked in by root, 15 years ago

importo il progetto

File size: 1.1 KB
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>Text</title>
6<link type="text/css" rel="stylesheet" href="../fpdf.css">
7</head>
8<body>
9<h1>Text</h1>
10<code>Text(<b>float</b> x, <b>float</b> y, <b>string</b> txt)</code>
11<h2>Description</h2>
12Prints a character string. The origin is on the left of the first character, on the baseline.
13This method allows to place a string precisely on the page, but it is usually easier to use
14Cell(), MultiCell() or Write() which are the standard methods to print text.
15<h2>Parameters</h2>
16<dl class="param">
17<dt><code>x</code></dt>
18<dd>
19Abscissa of the origin.
20</dd>
21<dt><code>y</code></dt>
22<dd>
23Ordinate of the origin.
24</dd>
25<dt><code>txt</code></dt>
26<dd>
27String to print.
28</dd>
29</dl>
30<h2>See also</h2>
31<a href="setfont.htm">SetFont()</a>,
32<a href="settextcolor.htm">SetTextColor()</a>,
33<a href="cell.htm">Cell()</a>,
34<a href="multicell.htm">MultiCell()</a>,
35<a href="write.htm">Write()</a>.
36<hr style="margin-top:1.5em">
37<div style="text-align:center"><a href="index.htm">Index</a></div>
38</body>
39</html>
Note: See TracBrowser for help on using the repository browser.