link.htm 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. <H2>Link</H2>
  10. <TT>Link(<B>float</B> x, <B>float</B> y, <B>float</B> w, <B>float</B> h, <B>mixed</B> link)</TT>
  11. <H4 CLASS='st'>Version</H4>
  12. 1.5
  13. <H4 CLASS='st'>Description</H4>
  14. Puts a link on a rectangular area of the page. Text or image links are generally put via Cell(),
  15. Write() or Image(), but this method can be useful for instance to define a clickable area inside
  16. an image.
  17. <H4 CLASS='st'>Parameters</H4>
  18. <TT><U>x</U></TT>
  19. <BLOCKQUOTE>
  20. Abscissa of the upper-left corner of the rectangle.
  21. </BLOCKQUOTE>
  22. <TT><U>y</U></TT>
  23. <BLOCKQUOTE>
  24. Ordinate of the upper-left corner of the rectangle.
  25. </BLOCKQUOTE>
  26. <TT><U>w</U></TT>
  27. <BLOCKQUOTE>
  28. Width of the rectangle.
  29. </BLOCKQUOTE>
  30. <TT><U>h</U></TT>
  31. <BLOCKQUOTE>
  32. Height of the rectangle.
  33. </BLOCKQUOTE>
  34. <TT><U>link</U></TT>
  35. <BLOCKQUOTE>
  36. URL or identifier returned by AddLink().
  37. </BLOCKQUOTE>
  38. <H4 CLASS='st'>See also</H4>
  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.2em">
  44. <DIV ALIGN="CENTER"><A HREF="index.htm">Index</A></DIV>
  45. </BODY>
  46. </HTML>