sLatestTextSummary doesn't print all the text. - FogBugz Knowledge Exchange most recent 30 from http://fogbugz.stackexchange.com2013-05-23T05:00:36Zhttp://fogbugz.stackexchange.com/feeds/question/10549http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://fogbugz.stackexchange.com/questions/10549/slatesttextsummary-doesnt-print-all-the-textsLatestTextSummary doesn't print all the text.unknown (google)2012-07-05T06:14:37Z2012-07-19T14:22:31Z
<p>I need to read out entire text of edit portion of Fogbugz. But sLatestTextSummary only prints few and ends with ... i'm using for loop to read out all the sLatestTextSummary text. </p>
http://fogbugz.stackexchange.com/questions/10549/slatesttextsummary-doesnt-print-all-the-text/10564#10564Answer by db for sLatestTextSummary doesn't print all the text.db2012-07-09T16:50:43Z2012-07-19T14:22:31Z<p>In what context are you trying to read out the case event details? From within a FogBugz plugin? Via a <a href="http://fogbugz.stackexchange.com/questions/5520" rel="nofollow">BugMonkey</a> script?</p>
<p><code>sLatestTextSummary</code> is just that: a <em>summary</em> of the latest event containing a comment, not the entire comment. To get at the full comment you'll want to look at <code>CBugEvent</code>'s <code>GetPlainText()</code> and/or <code>GetSafeHtml()</code> methods.</p>
<p>If you're using the <a href="http://fogbugz.stackexchange.com/fogbugz-xml-api" rel="nofollow">XML API</a>, you'll want to include the <code>events</code> column in the <code>cols</code> argument of your <code>cmd=search</code> request, and then look at the various columns included with each <code><event></code> node.</p>
<p>If you're trying to scrape the bug event text from the list page using a BugMonkey script, I'm afraid this isn't possible directly as that information isn't sent down on the list page.</p>