如何增加 Crystal Reports PDF 中的段落间距
我有一份报告,正在使用 VS2008 版本的 Crystal Reports 导出为 PDF。有一个字段显示产品描述,其中包含从我的数据库中提取的 HTML 数据,因此我已将该字段的文本解释设置为 HTML。文本在所有适当的 HTML 格式下都可以正常显示,但是段落之间只有一个行间距。我尝试添加多个
;和多个
标签以增加间距,但这不起作用。如何增加导出为 PDF 的 HTML 字段中的段落间距?
I have a report that I'm exporting to PDF using the VS2008 version of Crystal Reports. There is a field that displays a product description that contains HTML data pulled from my database so I've set Text Interpretation to HTML for the field. The text displays fine with all the appropriate HTML formatting, however, there is only a single line-space between paragraphs. I've tried adding multiple <p> and multiple <br> tags to increase the spacing but this does not work. How can I increase the spacing between paragraphs in an HTML field that I'm exporting to PDF?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
经过一番混乱之后,尝试使用它来换行
After a little messing around, try using this for a line break
<br>
我也有同样的问题。以下步骤解决了问题
在我的例子中,该字段位于子报表的“详细信息”部分。水晶报表版本是X1 R2。
步骤1.选择子报表,右键单击并选择“编辑子报表”选项
步骤 2. 选择子报表中详细信息部分的部分专家。
步骤 3. 选择“布局”选项卡
步骤 4. 将垂直(细节之间的间隙)更改为 0.109 厘米
步骤5.选择打印方向为“向下然后横向”
步骤 6. 选择选项“格式化多列组”
步骤 7. 按“确定”并保存子报告/主报告
通过执行此操作,我可以看到解释为“HTML TEXT”的字段的段落之间的空格
I had the same problem. the following step fix the issue
In my case the field is in "Details" Section of a SubReport. Crystal Report version is X1 R2.
Step 1. Select the SubReport, right click and select "Edit SubReport" option
Step 2. Select the Section Expert of the Details Section in the SubReport.
Step 3. Select the Layout tab
Step 4. Change the Vertical (Gap Between Details) as 0.109 cm
Step 5. Select Printing Direction as "Down then Across"
Step 6. Select option "Format Groups with multiple column
Step 7. Press Ok and save the SubReport / Main Report
By doing this i can see the space between the paragraphs for the field which has interpretation as "HTML TEXT"