我正在使用 Silverlight4 和 Telerik Reporting Q3 2011。我正在尝试生成所有网点的报告。我使用 Table 来显示它的字段。我想在同一个单元格中显示完整地址。我怎么能?
我使用以下表达式在同一单元格中显示完整地址。
= Fields.AddressLine1
+ ", " + Fields.AddressLine2
+ ", " + Fields.Suburb
+ ", " + Fields.City
+ ", " + Fields.State
+ ", " + Fields.Country
我想在同一个单元格中显示它,但希望输出如下所示..
=====================
Address
=====================
15A,
xxxx xxxRoad,
xxxxxx,
xxxxxxxx
====================
但我得到了这个
=====================
Address
=====================
15A, xxxx xxxRoad, xxxxxx, xxxxxxxx
=====================
如何获得我想要的输出?