<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="http://syndication.webwiz.co.uk/rss_namespace/">
 <channel>
  <title>Debenu Quick PDF Library - PDF SDK Community Forum : DrawText, DrawBox</title>
  <link>http://www.quickpdf.org/forum/</link>
  <description><![CDATA[This is an XML content feed of; Debenu Quick PDF Library - PDF SDK Community Forum : I need help - I can help : DrawText, DrawBox]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sun, 05 Apr 2026 00:17:43 +0000</pubDate>
  <lastBuildDate>Thu, 14 Jan 2021 22:27:04 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 11.01</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>www.quickpdf.org/forum/RSS_post_feed.asp?TID=3876</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Debenu Quick PDF Library - PDF SDK Community Forum]]></title>
   <url>http://www.quickpdf.org/forum/forum_images/QPDF_Forum_Title.png</url>
   <link>http://www.quickpdf.org/forum/</link>
  </image>
  <item>
   <title><![CDATA[DrawText, DrawBox : LastErrorCode after each function...]]></title>
   <link>http://www.quickpdf.org/forum/drawtext-drawbox_topic3876_post15531.html#15531</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=111">Ingo</a><br /><strong>Subject:</strong> 3876<br /><strong>Posted:</strong> 14 Jan 21 at 10:27PM<br /><br />LastErrorCode after each function call let you see if the last call works or fails...<br>]]>
   </description>
   <pubDate>Thu, 14 Jan 2021 22:27:04 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/drawtext-drawbox_topic3876_post15531.html#15531</guid>
  </item> 
  <item>
   <title><![CDATA[DrawText, DrawBox : Thanks Ingo,You are right, I didn&amp;#039;t...]]></title>
   <link>http://www.quickpdf.org/forum/drawtext-drawbox_topic3876_post15530.html#15530</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=3242">PatVdv</a><br /><strong>Subject:</strong> 3876<br /><strong>Posted:</strong> 14 Jan 21 at 2:52PM<br /><br />Thanks Ingo,<div><br></div><div>You are right, I didn't show it here, but the font was selected before. I'll go deep into the documentation anyway.</div><div><br></div><div>Patrick</div><div><br></div><div><br></div>]]>
   </description>
   <pubDate>Thu, 14 Jan 2021 14:52:42 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/drawtext-drawbox_topic3876_post15530.html#15530</guid>
  </item> 
  <item>
   <title><![CDATA[DrawText, DrawBox : Hi Patrick,in the description...]]></title>
   <link>http://www.quickpdf.org/forum/drawtext-drawbox_topic3876_post15529.html#15529</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=111">Ingo</a><br /><strong>Subject:</strong> 3876<br /><strong>Posted:</strong> 13 Jan 21 at 7:37PM<br /><br />Hi Patrick,<br><br>in the description for both functions (ascent/descent) you can read "...Returns the size of the selected font...". But i don't see that you've already selected a font.<br>Try SelectFont first before you try to do the settings for a font ;-)<br>https://www.debenu.com/docs/pdf_library_reference/SelectFont.php<br>Here you'll find a lot for the first start:<br>http://www.quickpdf.org/<br><br>Cheers and welcome here,<br>Ingo<br><br><br>]]>
   </description>
   <pubDate>Wed, 13 Jan 2021 19:37:00 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/drawtext-drawbox_topic3876_post15529.html#15529</guid>
  </item> 
  <item>
   <title><![CDATA[DrawText, DrawBox : Hi All,I&amp;#039;m just trying to...]]></title>
   <link>http://www.quickpdf.org/forum/drawtext-drawbox_topic3876_post15527.html#15527</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.quickpdf.org/forum/member_profile.asp?PF=3242">PatVdv</a><br /><strong>Subject:</strong> 3876<br /><strong>Posted:</strong> 13 Jan 21 at 8:59AM<br /><br />Hi All,<div><br></div><div>I'm just trying to design a box under a text, for the value of the width it is correct, but I don't understand what's wrong with the height ?</div><div><br></div><div>Patrick</div><div><br></div><div>ie :</div><div><div><br></div><div>&nbsp;with aPdf do</div><div>&nbsp;begin<span style="white-space:pre">	</span>&nbsp; &nbsp; &nbsp;</div><div><div>&nbsp; &nbsp; &nbsp; &nbsp;sTxt:='PROFORMA';</div><div>&nbsp; &nbsp; &nbsp; &nbsp;SetTextSize(30);</div><div>&nbsp; &nbsp; &nbsp; &nbsp;iWidth&nbsp; := GetTextWidth(sTxt);</div></div><div>&nbsp; &nbsp; &nbsp; &nbsp;iHeight:= GetTextAscent - GetTextDescent;</div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; iY:=10;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; iX:=130;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; SetFillColor(0.88,0.88,0.88);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; DrawBox(iX,iY,iWidth,iHeight,1);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; SetTextColor(1,0.13,0.13);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; DrawText(iX,(iY+iHeight),sTxt);</div></div><div>&nbsp;end;</div><div><br></div>]]>
   </description>
   <pubDate>Wed, 13 Jan 2021 08:59:26 +0000</pubDate>
   <guid isPermaLink="true">http://www.quickpdf.org/forum/drawtext-drawbox_topic3876_post15527.html#15527</guid>
  </item> 
 </channel>
</rss>