更改 SSRS 报告中的值

发布于 2024-08-06 01:16:38 字数 173 浏览 7 评论 0原文

我正在尝试使用 SSRS 表达式语言更改 SSRS 报告中文本的字体。

我的报告中有一个文本框,我使用 SSRS 表达式语言设置它的 Value 属性

="hello"

有没有办法使 hello 文字成为带下划线的字符串?

I'm trying to change the font of the text in my SSRS Report using the SSRS Expression language.

I have a textbox in my report and I set the Value property of it using the SSRS Expression language

="hello"

Is there a way to make the hello literal an underlined string?

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

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

发布评论

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

评论(4

獨角戲 2024-08-13 01:16:38

AFAIK 没有办法在表达式中改变它。但是,您可以修改 ReportingServices.css 文件来更改此设置。

它通常位于此处:

C:\Program Files\Microsoft SQL Server\MSSQL.3\Reporting Services\ReportManager\Styles\

AFAIK there is no way to change this in an expression. You can, however, modify the ReportingServices.css file to change this.

It's normally located here:

C:\Program Files\Microsoft SQL Server\MSSQL.3\Reporting Services\ReportManager\Styles\
瀞厅☆埖开 2024-08-13 01:16:38

除非我遗漏了某些内容,否则您可以设置此 使用属性< /a>.你不能通过“表达语言”(VB.net,顺便说一句)来做到这一点。

在您的示例中,您拥有的文本只是 Value 属性:一切都是属性......

Unless I'm missing something, you set this using properties. You can't do it via the "expression language" (which is VB.net, BTW).

In your example, the text you have is just the Value property: everything is a property...

小巷里的女流氓 2024-08-13 01:16:38

在文本装饰表达式值中,您可以输入 =Iif(Me.Value = "hello", "Underline", "None")

In the Text Decoration expression value, you can put =Iif(Me.Value = "hello", "Underline", "None")

救星 2024-08-13 01:16:38

创建一个占位符,在其中写入表达式
="" & “你好”& ””
然后转到占位符属性,选择单选按钮“HTML - 将 HTML 标签解释为样式”。单击“确定”...
这会起作用。

create a place holder in that write the expression
="" & "hello" & ""
And go to place holder properties select the radio button "HTML - Interpret HTML tags as styles". click ok...
This will work.

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