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

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

importo il progetto

File size: 1.0 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>Header</title>
6<link type="text/css" rel="stylesheet" href="../fpdf.css">
7</head>
8<body>
9<h1>Header</h1>
10<code>Header()</code>
11<h2>Description</h2>
12This method is used to render the page header. It is automatically called by AddPage() and
13should not be called directly by the application. The implementation in FPDF is empty, so
14you have to subclass it and override the method if you want a specific processing.
15<h2>Example</h2>
16<div class="doc-source">
17<pre><code>class PDF extends FPDF
18{
19function Header()
20{
21 //Select Arial bold 15
22 $this-&gt;SetFont('Arial','B',15);
23 //Move to the right
24 $this-&gt;Cell(80);
25 //Framed title
26 $this-&gt;Cell(30,10,'Title',1,0,'C');
27 //Line break
28 $this-&gt;Ln(20);
29}
30}</code></pre>
31</div>
32<h2>See also</h2>
33<a href="footer.htm">Footer()</a>.
34<hr style="margin-top:1.5em">
35<div style="text-align:center"><a href="index.htm">Index</a></div>
36</body>
37</html>
Note: See TracBrowser for help on using the repository browser.