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

Revision 20993, 1.3 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>Link</title>
6<link type="text/css" rel="stylesheet" href="../fpdf.css">
7</head>
8<body>
9<h1>Link</h1>
10<code>Link(<b>float</b> x, <b>float</b> y, <b>float</b> w, <b>float</b> h, <b>mixed</b> link)</code>
11<h2>Description</h2>
12Puts a link on a rectangular area of the page. Text or image links are generally put via Cell(),
13Write() or Image(), but this method can be useful for instance to define a clickable area inside
14an image.
15<h2>Parameters</h2>
16<dl class="param">
17<dt><code>x</code></dt>
18<dd>
19Abscissa of the upper-left corner of the rectangle.
20</dd>
21<dt><code>y</code></dt>
22<dd>
23Ordinate of the upper-left corner of the rectangle.
24</dd>
25<dt><code>w</code></dt>
26<dd>
27Width of the rectangle.
28</dd>
29<dt><code>h</code></dt>
30<dd>
31Height of the rectangle.
32</dd>
33<dt><code>link</code></dt>
34<dd>
35URL or identifier returned by AddLink().
36</dd>
37</dl>
38<h2>See also</h2>
39<a href="addlink.htm">AddLink()</a>,
40<a href="cell.htm">Cell()</a>,
41<a href="write.htm">Write()</a>,
42<a href="image.htm">Image()</a>.
43<hr style="margin-top:1.5em">
44<div style="text-align:center"><a href="index.htm">Index</a></div>
45</body>
46</html>
Note: See TracBrowser for help on using the repository browser.