I am trying to be very granular in formatting. I use format events to place text into controls based on the data to create a letter.
Having said that, because of the conditional nature of constructing the text in code, it is not practical to just separate the text into more text boxes to control the spacing between the text that way. So here is hoping to avoid the impractical...
To keep this a little simpler I am only going put over simplified demo HTML and not any code that concatenates code together...
The only thing I have found to make the height shorter is the font size. I think I am targeting a "4 point" height for the spacing but of course the legacy font size that is supported starts at 8 point and goes up 2 points with every number increment.
Is there some other way to specify the white space break than I have done with the br tag?
Having said that, because of the conditional nature of constructing the text in code, it is not practical to just separate the text into more text boxes to control the spacing between the text that way. So here is hoping to avoid the impractical...
To keep this a little simpler I am only going put over simplified demo HTML and not any code that concatenates code together...
The only thing I have found to make the height shorter is the font size. I think I am targeting a "4 point" height for the spacing but of course the legacy font size that is supported starts at 8 point and goes up 2 points with every number increment.
Code:
<div>Some text</div>[/indent]
<div><font size=1><br></font></div>
<div>Some more text</div>
Is there some other way to specify the white space break than I have done with the br tag?