水晶报表中从右到左的多列
问题描述:
在Crystal Report中,默认情况下我们可以实现从左到右的多列,但是我需要将多列报告的方向更改为RTL,对此有什么解决方案吗?
in crystal report we can implementing left to right multi-column by default but i need change direction of multi-column report to RTL, is there any solution for that?
非常感谢.
答
我不认为可以使用标准功能-但是如何解决此问题呢?
I don't believe it's possible using standard functionality- but how about this for a workaround:
让我们想象一下,我们目前只有一个明细行.
Let us imagine we currently have a single detail row a.
- 创建一个新的明细行b.
- 将详细信息行a上的字段移到右侧.
- 将字段复制到左侧的详细信息行b.
- 将详细信息部分a设置为以下部分的基础.
- 将详细信息部分a设置为有条件地通过以下方式禁止显示:
recordnumber mod 2 = 1
- 将详细信息部分b设置为有条件地禁止显示,方法是:
recordnumber mod 2 = 0
Voila?