向表达式添加换行符

发布于 2024-11-19 23:58:24 字数 215 浏览 3 评论 0原文

我有一个表达式语句来显示报表查看器文本框的内容,但在尝试在两个表达式之间添加回车符或新行时变为空白。我的表达如下:

=Format(Fields!LastDateVisited.Value, "d")+ " "+Fields!LastVisitType.Value

我想将其改为新行,而不是空格。我尝试了“\n”但没有成功,任何建议都会很棒。谢谢!

I have an expression statement to display content for a text box for a reportviewer but went blank when trying to add a carriage return or a new line between the two expression. My expression as follows:

=Format(Fields!LastDateVisited.Value, "d")+ " "+Fields!LastVisitType.Value

Instead of the space i want to make it a new line. I tried "\n" but didn't work, any suggestions would be great. Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

感受沵的脚步 2024-11-26 23:58:24

您还可以使用以下:

= Fields!FirstField1.Value + System.Environment.NewLine + Fields!MyField2

You can also use following :

= Fields!FirstField1.Value + System.Environment.NewLine + Fields!MyField2
一人独醉 2024-11-26 23:58:24

我认为行尾字符应该有效:'\n'

I think that a end of line character should work: '\n'

我恋#小黄人 2024-11-26 23:58:24

在占位符属性(Expr 页面)中将标记类型更改为 html

in your placeholder properties (Expr page) change the markup type to html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文