text.htm 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. <H2>Text</H2>
  10. <TT>Text(<B>float</B> x, <B>float</B> y, <B>string</B> txt)</TT>
  11. <H4 CLASS='st'>Version</H4>
  12. 1.0
  13. <H4 CLASS='st'>Description</H4>
  14. Prints a character string. The origin is on the left of the first character, on the baseline.
  15. This method allows to place a string precisely on the page, but it is usually easier to use
  16. Cell(), MultiCell() or Write() which are the standard methods to print text.
  17. <H4 CLASS='st'>Parameters</H4>
  18. <TT><U>x</U></TT>
  19. <BLOCKQUOTE>
  20. Abscissa of the origin.
  21. </BLOCKQUOTE>
  22. <TT><U>y</U></TT>
  23. <BLOCKQUOTE>
  24. Ordinate of the origin.
  25. </BLOCKQUOTE>
  26. <TT><U>txt</U></TT>
  27. <BLOCKQUOTE>
  28. String to print.
  29. </BLOCKQUOTE>
  30. <H4 CLASS='st'>See also</H4>
  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.2em">
  37. <DIV ALIGN="CENTER"><A HREF="index.htm">Index</A></DIV>
  38. </BODY>
  39. </HTML>